Commit 08d128a54b6d2ee835bcf737bab9dbb7e7913811

Authored by Mateusz Kopeć
1 parent 1a009dd0

clean dependencies

nicolas-cli/pom.xml
... ... @@ -28,11 +28,21 @@
28 28 <scope>runtime</scope>
29 29 </dependency>
30 30  
  31 + <!-- internal -->
  32 + <dependency>
  33 + <groupId>pl.waw.ipipan.zil.multiservice</groupId>
  34 + <artifactId>utils</artifactId>
  35 + </dependency>
  36 +
31 37 <!-- third party -->
32 38 <dependency>
33 39 <groupId>com.beust</groupId>
34 40 <artifactId>jcommander</artifactId>
35 41 </dependency>
  42 + <dependency>
  43 + <groupId>commons-io</groupId>
  44 + <artifactId>commons-io</artifactId>
  45 + </dependency>
36 46  
37 47 <!-- logging -->
38 48 <dependency>
... ...
nicolas-lib/pom.xml
... ... @@ -15,10 +15,6 @@
15 15  
16 16 <!-- internal -->
17 17 <dependency>
18   - <groupId>pl.waw.ipipan.zil.summ</groupId>
19   - <artifactId>pscapi</artifactId>
20   - </dependency>
21   - <dependency>
22 18 <groupId>pl.waw.ipipan.zil.multiservice</groupId>
23 19 <artifactId>utils</artifactId>
24 20 </dependency>
... ... @@ -29,16 +25,12 @@
29 25 <artifactId>weka-stable</artifactId>
30 26 </dependency>
31 27 <dependency>
32   - <groupId>org.apache.commons</groupId>
33   - <artifactId>commons-csv</artifactId>
34   - </dependency>
35   - <dependency>
36 28 <groupId>commons-io</groupId>
37 29 <artifactId>commons-io</artifactId>
38 30 </dependency>
39 31 <dependency>
40   - <groupId>org.apache.commons</groupId>
41   - <artifactId>commons-lang3</artifactId>
  32 + <groupId>com.google.guava</groupId>
  33 + <artifactId>guava</artifactId>
42 34 </dependency>
43 35  
44 36 <!-- logging -->
... ...
nicolas-multiservice/pom.xml
... ... @@ -17,9 +17,11 @@
17 17 <groupId>pl.waw.ipipan.zil.multiservice</groupId>
18 18 <artifactId>utils</artifactId>
19 19 </dependency>
  20 +
  21 + <!-- third party -->
20 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 25 </dependency>
24 26  
25 27 <!-- logging -->
... ...
nicolas-train/pom.xml
... ... @@ -51,9 +51,21 @@
51 51 <artifactId>commons-lang3</artifactId>
52 52 </dependency>
53 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 62 <groupId>net.lingala.zip4j</groupId>
55 63 <artifactId>zip4j</artifactId>
56 64 </dependency>
  65 + <dependency>
  66 + <groupId>com.google.guava</groupId>
  67 + <artifactId>guava</artifactId>
  68 + </dependency>
57 69  
58 70 <!-- logging -->
59 71 <dependency>
... ...
... ... @@ -32,11 +32,12 @@
32 32 <weka-stable.version>3.8.1</weka-stable.version>
33 33 <commons-lang3.version>3.5</commons-lang3.version>
34 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 36 <junit.version>4.12</junit.version>
37 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 41 </properties>
41 42  
42 43 <prerequisites>
... ... @@ -140,6 +141,11 @@
140 141 <artifactId>jcommander</artifactId>
141 142 <version>${jcommander.version}</version>
142 143 </dependency>
  144 + <dependency>
  145 + <groupId>org.apache.thrift</groupId>
  146 + <artifactId>libthrift</artifactId>
  147 + <version>${libthrift.version}</version>
  148 + </dependency>
143 149  
144 150 <!-- logging -->
145 151 <dependency>
... ... @@ -151,6 +157,7 @@
151 157 <groupId>org.slf4j</groupId>
152 158 <artifactId>slf4j-simple</artifactId>
153 159 <version>${slf4j-api.version}</version>
  160 + <scope>runtime</scope>
154 161 </dependency>
155 162  
156 163 <!-- test -->
... ... @@ -175,6 +182,11 @@
175 182 <plugins>
176 183 <plugin>
177 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 190 <artifactId>maven-jar-plugin</artifactId>
179 191 <version>3.0.2</version>
180 192 </plugin>
... ...