|
5 | 5 |
|
6 | 6 | <groupId>de.upb.cs.swt</groupId> |
7 | 7 | <artifactId>swan</artifactId> |
8 | | - <version>2.0.0</version> |
| 8 | + <version>3.0.0</version> |
9 | 9 | <packaging>jar</packaging> |
10 | 10 |
|
11 | 11 |
|
|
63 | 63 |
|
64 | 64 | <dependencies> |
65 | 65 | <dependency> |
| 66 | + <groupId>org.openjfx</groupId> |
| 67 | + <artifactId>javafx-base</artifactId> |
| 68 | + <version>16</version> |
| 69 | + <type>pom</type> |
| 70 | + </dependency> |
| 71 | + <!--dependency> |
66 | 72 | <groupId>ca.mcgill.sable</groupId> |
67 | 73 | <artifactId>soot</artifactId> |
68 | 74 | <version>3.2.0</version> |
| 75 | + </dependency--> |
| 76 | + <dependency> |
| 77 | + <groupId>org.soot-oss</groupId> |
| 78 | + <artifactId>soot</artifactId> |
| 79 | + <version>4.2.1</version> |
69 | 80 | </dependency> |
70 | 81 | <dependency> |
71 | 82 | <groupId>nz.ac.waikato.cms.weka</groupId> |
72 | 83 | <artifactId>weka-stable</artifactId> |
73 | | - <version>3.8.4</version> |
| 84 | + <version>3.8.5</version> |
74 | 85 | </dependency> |
75 | 86 | <dependency> |
76 | 87 | <groupId>com.googlecode.json-simple</groupId> |
|
85 | 96 | <dependency> |
86 | 97 | <groupId>org.apache.commons</groupId> |
87 | 98 | <artifactId>commons-lang3</artifactId> |
88 | | - <version>3.10</version> |
| 99 | + <version>3.12.0</version> |
89 | 100 | </dependency> |
90 | 101 | <dependency> |
91 | 102 | <groupId>edu.stanford.nlp</groupId> |
92 | 103 | <artifactId>stanford-corenlp</artifactId> |
93 | | - <version>4.0.0</version> |
| 104 | + <version>4.3.0</version> |
94 | 105 | </dependency> |
95 | 106 | <dependency> |
96 | 107 | <groupId>edu.stanford.nlp</groupId> |
97 | 108 | <artifactId>stanford-corenlp</artifactId> |
98 | | - <version>4.0.0</version> |
| 109 | + <version>4.3.0</version> |
99 | 110 | <classifier>models</classifier> |
100 | 111 | </dependency> |
101 | 112 | <dependency> |
102 | 113 | <groupId>org.jsoup</groupId> |
103 | 114 | <artifactId>jsoup</artifactId> |
104 | | - <version>1.13.1</version> |
| 115 | + <version>1.14.3</version> |
105 | 116 | </dependency> |
106 | 117 | <dependency> |
107 | 118 | <groupId>org.reflections</groupId> |
108 | 119 | <artifactId>reflections</artifactId> |
109 | | - <version>0.9.12</version> |
| 120 | + <version>0.10.1</version> |
110 | 121 | </dependency> |
111 | 122 | <dependency> |
112 | 123 | <groupId>dev.jeka</groupId> |
113 | 124 | <artifactId>jeka-core</artifactId> |
114 | 125 | <version>0.9.0.M10</version> |
115 | 126 | </dependency> |
116 | | - <!-- deeplearning4j-core: contains main functionality and neural networks --> |
| 127 | + <!-- deeplearning4j-core: contains swanPipeline functionality and neural networks --> |
117 | 128 | <dependency> |
118 | 129 | <groupId>org.deeplearning4j</groupId> |
119 | 130 | <artifactId>deeplearning4j-core</artifactId> |
|
152 | 163 | <dependency> |
153 | 164 | <groupId>ai.libs</groupId> |
154 | 165 | <artifactId>hasco-core</artifactId> |
155 | | - <version>0.2.3</version> |
| 166 | + <version>0.2.5</version> |
156 | 167 | </dependency> |
157 | 168 | <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api --> |
158 | 169 | <dependency> |
159 | 170 | <groupId>org.slf4j</groupId> |
160 | 171 | <artifactId>slf4j-api</artifactId> |
161 | | - <version>1.7.30</version> |
| 172 | + <version>1.7.32</version> |
162 | 173 | </dependency> |
163 | 174 | <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-simple --> |
164 | 175 | <dependency> |
165 | 176 | <groupId>org.slf4j</groupId> |
166 | 177 | <artifactId>slf4j-simple</artifactId> |
167 | | - <version>1.7.30</version> |
| 178 | + <version>1.7.32</version> |
| 179 | + </dependency> |
| 180 | + <dependency> |
| 181 | + <groupId>info.picocli</groupId> |
| 182 | + <artifactId>picocli</artifactId> |
| 183 | + <version>4.6.1</version> |
| 184 | + </dependency> |
| 185 | + <dependency> |
| 186 | + <groupId>commons-io</groupId> |
| 187 | + <artifactId>commons-io</artifactId> |
| 188 | + <version>2.6</version> |
| 189 | + <scope>compile</scope> |
168 | 190 | </dependency> |
169 | 191 | </dependencies> |
170 | 192 |
|
|
198 | 220 | </repository> |
199 | 221 | <repository> |
200 | 222 | <id>imagej.public</id> |
201 | | - <url>http://maven.imagej.net/content/groups/public</url> |
| 223 | + <url>https://maven.imagej.net/content/groups/public</url> |
202 | 224 | </repository> |
203 | 225 | </repositories> |
204 | 226 |
|
|
226 | 248 | <plugin> |
227 | 249 | <groupId>org.apache.maven.plugins</groupId> |
228 | 250 | <artifactId>maven-source-plugin</artifactId> |
| 251 | + <version>3.2.1</version> |
229 | 252 | <executions> |
230 | 253 | <execution> |
231 | 254 | <id>attach-sources</id> |
|
250 | 273 | <archive> |
251 | 274 | <manifest> |
252 | 275 | <mainClass> |
253 | | - de.fraunhofer.iem.swan.Main |
254 | | - </mainClass> |
| 276 | + de.fraunhofer.iem.swan.Main |
| 277 | + </mainClass> |
255 | 278 | </manifest> |
256 | 279 | </archive> |
257 | 280 | <descriptorRefs> |
|
261 | 284 | </execution> |
262 | 285 | </executions> |
263 | 286 | </plugin> |
264 | | - <plugin> |
265 | | - <groupId>org.apache.maven.plugins</groupId> |
266 | | - <artifactId>maven-compiler-plugin</artifactId> |
267 | | - <configuration> |
268 | | - <source>8</source> |
269 | | - <target>8</target> |
270 | | - </configuration> |
271 | | - </plugin> |
272 | 287 | </plugins> |
273 | 288 | </build> |
274 | 289 |
|
275 | | - |
276 | | - |
277 | | - |
278 | 290 | <!-- release build command: mvn clean install -Prelease --> |
279 | 291 | <profiles> |
280 | 292 | <profile> |
|
284 | 296 | <plugin> |
285 | 297 | <groupId>org.apache.maven.plugins</groupId> |
286 | 298 | <artifactId>maven-javadoc-plugin</artifactId> |
287 | | - <version>3.0.0</version> |
| 299 | + <version>3.3.1</version> |
288 | 300 | <executions> |
289 | 301 | <execution> |
290 | 302 | <id>attach-javadocs</id> |
|
297 | 309 | <plugin> |
298 | 310 | <groupId>org.apache.maven.plugins</groupId> |
299 | 311 | <artifactId>maven-source-plugin</artifactId> |
300 | | - <version>3.0.1</version> |
| 312 | + <version>3.2.1</version> |
301 | 313 | <executions> |
302 | 314 | <execution> |
303 | 315 | <id>attach-sources</id> |
|
0 commit comments