Skip to content

Commit fe8776a

Browse files
Merge pull request hubert-marteau#6 from elenoir/refacto_pom
refacto POM
2 parents 120ddf6 + 1b79fcc commit fe8776a

File tree

1 file changed

+46
-35
lines changed

1 file changed

+46
-35
lines changed

pom.xml

Lines changed: 46 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,47 @@
1-
<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/xsd/maven-4.0.0.xsd">
2-
<modelVersion>4.0.0</modelVersion>
3-
<groupId>MultiChainJavaAPI</groupId>
4-
<artifactId>MultiChainJavaAPI</artifactId>
5-
<version>0.3.0-SNAPSHOT</version>
6-
<build>
7-
<sourceDirectory>src</sourceDirectory>
8-
<plugins>
9-
<plugin>
10-
<artifactId>maven-compiler-plugin</artifactId>
11-
<version>3.1</version>
12-
<configuration>
13-
<source/>
14-
<target/>
15-
</configuration>
16-
</plugin>
17-
</plugins>
18-
</build>
19-
<dependencies>
20-
<dependency>
21-
<groupId>org.apache.xmlrpc</groupId>
22-
<artifactId>xmlrpc-client</artifactId>
23-
<version>3.1.3</version>
24-
</dependency>
25-
<dependency>
26-
<groupId>org.apache.httpcomponents</groupId>
27-
<artifactId>httpclient</artifactId>
28-
<version>4.3.6</version>
29-
</dependency>
30-
<dependency>
31-
<groupId>com.google.code.gson</groupId>
32-
<artifactId>gson</artifactId>
33-
<version>2.8.1</version>
34-
</dependency>
35-
</dependencies>
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>MultiChainJavaAPI</groupId>
5+
<artifactId>MultiChainJavaAPI</artifactId>
6+
<version>0.3.1-SNAPSHOT</version>
7+
8+
<properties>
9+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
10+
<java.version>1.8</java.version>
11+
<maven-compiler-plugin.version>3.1</maven-compiler-plugin.version>
12+
<xmlrpc-client.version>3.1.3</xmlrpc-client.version>
13+
<httpclient.version>4.3.6</httpclient.version>
14+
<gson.version>2.8.1</gson.version>
15+
</properties>
16+
17+
<build>
18+
<sourceDirectory>src</sourceDirectory>
19+
<plugins>
20+
<plugin>
21+
<artifactId>maven-compiler-plugin</artifactId>
22+
<version>${maven-compiler-plugin.version}</version>
23+
<configuration>
24+
<source>${java.version}</source>
25+
<target>${java.version}</target>
26+
</configuration>
27+
</plugin>
28+
</plugins>
29+
</build>
30+
<dependencies>
31+
<dependency>
32+
<groupId>org.apache.xmlrpc</groupId>
33+
<artifactId>xmlrpc-client</artifactId>
34+
<version>${xmlrpc-client.version}</version>
35+
</dependency>
36+
<dependency>
37+
<groupId>org.apache.httpcomponents</groupId>
38+
<artifactId>httpclient</artifactId>
39+
<version>${httpclient.version}</version>
40+
</dependency>
41+
<dependency>
42+
<groupId>com.google.code.gson</groupId>
43+
<artifactId>gson</artifactId>
44+
<version>${gson.version}</version>
45+
</dependency>
46+
</dependencies>
3647
</project>

0 commit comments

Comments
 (0)