Commit 08d128a54b6d2ee835bcf737bab9dbb7e7913811
1 parent
1a009dd0
clean dependencies
Showing
5 changed files
with
43 additions
and
15 deletions
nicolas-cli/pom.xml
@@ -28,11 +28,21 @@ | @@ -28,11 +28,21 @@ | ||
28 | <scope>runtime</scope> | 28 | <scope>runtime</scope> |
29 | </dependency> | 29 | </dependency> |
30 | 30 | ||
31 | + <!-- internal --> | ||
32 | + <dependency> | ||
33 | + <groupId>pl.waw.ipipan.zil.multiservice</groupId> | ||
34 | + <artifactId>utils</artifactId> | ||
35 | + </dependency> | ||
36 | + | ||
31 | <!-- third party --> | 37 | <!-- third party --> |
32 | <dependency> | 38 | <dependency> |
33 | <groupId>com.beust</groupId> | 39 | <groupId>com.beust</groupId> |
34 | <artifactId>jcommander</artifactId> | 40 | <artifactId>jcommander</artifactId> |
35 | </dependency> | 41 | </dependency> |
42 | + <dependency> | ||
43 | + <groupId>commons-io</groupId> | ||
44 | + <artifactId>commons-io</artifactId> | ||
45 | + </dependency> | ||
36 | 46 | ||
37 | <!-- logging --> | 47 | <!-- logging --> |
38 | <dependency> | 48 | <dependency> |
nicolas-lib/pom.xml
@@ -15,10 +15,6 @@ | @@ -15,10 +15,6 @@ | ||
15 | 15 | ||
16 | <!-- internal --> | 16 | <!-- internal --> |
17 | <dependency> | 17 | <dependency> |
18 | - <groupId>pl.waw.ipipan.zil.summ</groupId> | ||
19 | - <artifactId>pscapi</artifactId> | ||
20 | - </dependency> | ||
21 | - <dependency> | ||
22 | <groupId>pl.waw.ipipan.zil.multiservice</groupId> | 18 | <groupId>pl.waw.ipipan.zil.multiservice</groupId> |
23 | <artifactId>utils</artifactId> | 19 | <artifactId>utils</artifactId> |
24 | </dependency> | 20 | </dependency> |
@@ -29,16 +25,12 @@ | @@ -29,16 +25,12 @@ | ||
29 | <artifactId>weka-stable</artifactId> | 25 | <artifactId>weka-stable</artifactId> |
30 | </dependency> | 26 | </dependency> |
31 | <dependency> | 27 | <dependency> |
32 | - <groupId>org.apache.commons</groupId> | ||
33 | - <artifactId>commons-csv</artifactId> | ||
34 | - </dependency> | ||
35 | - <dependency> | ||
36 | <groupId>commons-io</groupId> | 28 | <groupId>commons-io</groupId> |
37 | <artifactId>commons-io</artifactId> | 29 | <artifactId>commons-io</artifactId> |
38 | </dependency> | 30 | </dependency> |
39 | <dependency> | 31 | <dependency> |
40 | - <groupId>org.apache.commons</groupId> | ||
41 | - <artifactId>commons-lang3</artifactId> | 32 | + <groupId>com.google.guava</groupId> |
33 | + <artifactId>guava</artifactId> | ||
42 | </dependency> | 34 | </dependency> |
43 | 35 | ||
44 | <!-- logging --> | 36 | <!-- logging --> |
nicolas-multiservice/pom.xml
@@ -17,9 +17,11 @@ | @@ -17,9 +17,11 @@ | ||
17 | <groupId>pl.waw.ipipan.zil.multiservice</groupId> | 17 | <groupId>pl.waw.ipipan.zil.multiservice</groupId> |
18 | <artifactId>utils</artifactId> | 18 | <artifactId>utils</artifactId> |
19 | </dependency> | 19 | </dependency> |
20 | + | ||
21 | + <!-- third party --> | ||
20 | <dependency> | 22 | <dependency> |
21 | - <groupId>pl.waw.ipipan.zil.summ</groupId> | ||
22 | - <artifactId>pscapi</artifactId> | 23 | + <groupId>org.apache.thrift</groupId> |
24 | + <artifactId>libthrift</artifactId> | ||
23 | </dependency> | 25 | </dependency> |
24 | 26 | ||
25 | <!-- logging --> | 27 | <!-- logging --> |
nicolas-train/pom.xml
@@ -51,9 +51,21 @@ | @@ -51,9 +51,21 @@ | ||
51 | <artifactId>commons-lang3</artifactId> | 51 | <artifactId>commons-lang3</artifactId> |
52 | </dependency> | 52 | </dependency> |
53 | <dependency> | 53 | <dependency> |
54 | + <groupId>org.apache.commons</groupId> | ||
55 | + <artifactId>commons-csv</artifactId> | ||
56 | + </dependency> | ||
57 | + <dependency> | ||
58 | + <groupId>commons-io</groupId> | ||
59 | + <artifactId>commons-io</artifactId> | ||
60 | + </dependency> | ||
61 | + <dependency> | ||
54 | <groupId>net.lingala.zip4j</groupId> | 62 | <groupId>net.lingala.zip4j</groupId> |
55 | <artifactId>zip4j</artifactId> | 63 | <artifactId>zip4j</artifactId> |
56 | </dependency> | 64 | </dependency> |
65 | + <dependency> | ||
66 | + <groupId>com.google.guava</groupId> | ||
67 | + <artifactId>guava</artifactId> | ||
68 | + </dependency> | ||
57 | 69 | ||
58 | <!-- logging --> | 70 | <!-- logging --> |
59 | <dependency> | 71 | <dependency> |
pom.xml
@@ -32,11 +32,12 @@ | @@ -32,11 +32,12 @@ | ||
32 | <weka-stable.version>3.8.1</weka-stable.version> | 32 | <weka-stable.version>3.8.1</weka-stable.version> |
33 | <commons-lang3.version>3.5</commons-lang3.version> | 33 | <commons-lang3.version>3.5</commons-lang3.version> |
34 | <commons-io.version>2.5</commons-io.version> | 34 | <commons-io.version>2.5</commons-io.version> |
35 | - <slf4j-api.version>1.7.22</slf4j-api.version> | 35 | + <slf4j-api.version>1.7.24</slf4j-api.version> |
36 | <junit.version>4.12</junit.version> | 36 | <junit.version>4.12</junit.version> |
37 | <zip4j.version>1.3.2</zip4j.version> | 37 | <zip4j.version>1.3.2</zip4j.version> |
38 | - <mockito-core.version>2.7.1</mockito-core.version> | ||
39 | - <jcommander.version>1.60</jcommander.version> | 38 | + <mockito-core.version>2.7.17</mockito-core.version> |
39 | + <jcommander.version>1.64</jcommander.version> | ||
40 | + <libthrift.version>0.9.0</libthrift.version> | ||
40 | </properties> | 41 | </properties> |
41 | 42 | ||
42 | <prerequisites> | 43 | <prerequisites> |
@@ -140,6 +141,11 @@ | @@ -140,6 +141,11 @@ | ||
140 | <artifactId>jcommander</artifactId> | 141 | <artifactId>jcommander</artifactId> |
141 | <version>${jcommander.version}</version> | 142 | <version>${jcommander.version}</version> |
142 | </dependency> | 143 | </dependency> |
144 | + <dependency> | ||
145 | + <groupId>org.apache.thrift</groupId> | ||
146 | + <artifactId>libthrift</artifactId> | ||
147 | + <version>${libthrift.version}</version> | ||
148 | + </dependency> | ||
143 | 149 | ||
144 | <!-- logging --> | 150 | <!-- logging --> |
145 | <dependency> | 151 | <dependency> |
@@ -151,6 +157,7 @@ | @@ -151,6 +157,7 @@ | ||
151 | <groupId>org.slf4j</groupId> | 157 | <groupId>org.slf4j</groupId> |
152 | <artifactId>slf4j-simple</artifactId> | 158 | <artifactId>slf4j-simple</artifactId> |
153 | <version>${slf4j-api.version}</version> | 159 | <version>${slf4j-api.version}</version> |
160 | + <scope>runtime</scope> | ||
154 | </dependency> | 161 | </dependency> |
155 | 162 | ||
156 | <!-- test --> | 163 | <!-- test --> |
@@ -175,6 +182,11 @@ | @@ -175,6 +182,11 @@ | ||
175 | <plugins> | 182 | <plugins> |
176 | <plugin> | 183 | <plugin> |
177 | <groupId>org.apache.maven.plugins</groupId> | 184 | <groupId>org.apache.maven.plugins</groupId> |
185 | + <artifactId>maven-dependency-plugin</artifactId> | ||
186 | + <version>3.0.0</version> | ||
187 | + </plugin> | ||
188 | + <plugin> | ||
189 | + <groupId>org.apache.maven.plugins</groupId> | ||
178 | <artifactId>maven-jar-plugin</artifactId> | 190 | <artifactId>maven-jar-plugin</artifactId> |
179 | <version>3.0.2</version> | 191 | <version>3.0.2</version> |
180 | </plugin> | 192 | </plugin> |