Skip to content

Commit 5ff12b0

Browse files
hubert-marteau[a561842] hubert marteau
authored andcommitted
version 2.0.1 - initialization
1 parent d2ce356 commit 5ff12b0

File tree

2 files changed

+87
-1
lines changed

2 files changed

+87
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,3 @@ hs_err_pid*
1717
/target
1818
/.settings
1919
*.iml
20-
/src/test

pom.xml

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
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>com.multichainjavaapi</groupId>
5+
<artifactId>MultiChainJavaAPI</artifactId>
6+
<version>2.0.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+
<commons-codec.version>1.10</commons-codec.version>
16+
<commons-collections4.version>4.1</commons-collections4.version>
17+
</properties>
18+
19+
<scm>
20+
<connection>scm:git:git://github.com/SimplyUb/MultiChainJavaAPI.git</connection>
21+
<developerConnection>scm:git:git@github.com/SimplyUb/MultiChainJavaAPI.git</developerConnection>
22+
<url>https://github.com/SimplyUb/MultiChainJavaAPI</url>
23+
</scm>
24+
25+
<build>
26+
<plugins>
27+
<plugin>
28+
<artifactId>maven-compiler-plugin</artifactId>
29+
<version>${maven-compiler-plugin.version}</version>
30+
<configuration>
31+
<source>${java.version}</source>
32+
<target>${java.version}</target>
33+
</configuration>
34+
</plugin>
35+
<plugin>
36+
<artifactId>maven-assembly-plugin</artifactId>
37+
<executions>
38+
<execution>
39+
<phase>package</phase>
40+
<goals>
41+
<goal>single</goal>
42+
</goals>
43+
</execution>
44+
</executions>
45+
<configuration>
46+
<descriptorRefs>
47+
<descriptorRef>jar-with-dependencies</descriptorRef>
48+
</descriptorRefs>
49+
</configuration>
50+
</plugin>
51+
</plugins>
52+
</build>
53+
<dependencies>
54+
<dependency>
55+
<groupId>org.apache.xmlrpc</groupId>
56+
<artifactId>xmlrpc-client</artifactId>
57+
<version>${xmlrpc-client.version}</version>
58+
</dependency>
59+
<dependency>
60+
<groupId>org.apache.httpcomponents</groupId>
61+
<artifactId>httpclient</artifactId>
62+
<version>${httpclient.version}</version>
63+
</dependency>
64+
<dependency>
65+
<groupId>com.google.code.gson</groupId>
66+
<artifactId>gson</artifactId>
67+
<version>${gson.version}</version>
68+
</dependency>
69+
<dependency>
70+
<groupId>commons-codec</groupId>
71+
<artifactId>commons-codec</artifactId>
72+
<version>${commons-codec.version}</version>
73+
</dependency>
74+
<dependency>
75+
<groupId>org.apache.commons</groupId>
76+
<artifactId>commons-collections4</artifactId>
77+
<version>${commons-collections4.version}</version>
78+
</dependency>
79+
80+
<dependency>
81+
<groupId>junit</groupId>
82+
<artifactId>junit</artifactId>
83+
<version>4.12</version>
84+
<scope>test</scope>
85+
</dependency>
86+
</dependencies>
87+
</project>

0 commit comments

Comments
 (0)