-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
110 lines (99 loc) · 3.9 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>eliasstar</groupId>
<artifactId>json-rpc</artifactId>
<version>2.0.7</version>
<packaging>jar</packaging>
<name>JsonRpc4J</name>
<description>A general JSON-RPC 2.0 Wrapper for Java</description>
<url>/~https://github.com/EliasStar/JsonRpc4J</url>
<inceptionYear>2020</inceptionYear>
<licenses>
<license>
<name>LGPL-3.0-or-later</name>
<url>https://www.gnu.org/licenses/lgpl-3.0-standalone.html</url>
<distribution>repo</distribution>
<comments>LESSER GNU GENERAL PUBLIC LICENSE</comments>
</license>
</licenses>
<scm>
<connection>scm:git:/~https://github.com/EliasStar/JsonRpc4J.git</connection>
<developerConnection>scm:git:/~https://github.com/EliasStar/JsonRpc4J.git</developerConnection>
<tag>HEAD</tag>
<url>/~https://github.com/EliasStar/JsonRpc4J</url>
</scm>
<issueManagement>
<system>GitHub Issues</system>
<url>/~https://github.com/EliasStar/JsonRpc4J/issues</url>
</issueManagement>
<distributionManagement>
<repository>
<id>github</id>
<url>https://maven.pkg.github.com/EliasStar/JsonRpc4J</url>
</repository>
</distributionManagement>
<properties>
<java.version>11</java.version>
<encoding>UTF-8</encoding>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<maven.compiler.release>${java.version}</maven.compiler.release>
<project.build.sourceEncoding>${encoding}</project.build.sourceEncoding>
<project.reporting.outputEncoding>${encoding}</project.reporting.outputEncoding>
</properties>
<dependencies>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.9</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.6.2</version>
<scope>test</scope>
<optional>true</optional>
</dependency>
</dependencies>
<build>
<defaultGoal>clean package</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>