6
6
7
7
<groupId >com.jgcomptech.tools</groupId >
8
8
<artifactId >java-ultimate-tools</artifactId >
9
- <version >1.5.0 </version >
9
+ <version >1.5.1 </version >
10
10
<packaging >jar</packaging >
11
11
12
12
<properties >
76
76
<enabled >false</enabled >
77
77
</snapshots >
78
78
</repository >
79
+ <repository >
80
+ <id >jvnet-nexus-staging</id >
81
+ <layout >default</layout >
82
+ <url >http://maven.java.net/content/repositories/staging/</url >
83
+ <snapshots >
84
+ <enabled >false</enabled >
85
+ </snapshots >
86
+ </repository >
79
87
</repositories >
80
88
81
89
<pluginRepositories >
140
148
</execution >
141
149
</executions >
142
150
</plugin >
143
- <!-- Build JavaDoc -->
144
151
<plugin >
145
152
<groupId >org.apache.maven.plugins</groupId >
146
153
<artifactId >maven-javadoc-plugin</artifactId >
252
259
</execution >
253
260
</executions >
254
261
</plugin >
255
- <!-- <plugin>
256
- <artifactId>maven-antrun-plugin</artifactId>
257
- <executions>
258
- <execution>
259
- <phase>compile</phase>
260
- <configuration>
261
- <tasks>
262
-
263
- </tasks>
264
- </configuration>
265
- <goals>
266
- <goal>run</goal>
267
- </goals>
268
- </execution>
269
- </executions>
270
- </plugin>-->
271
262
<plugin >
272
263
<groupId >org.sonatype.plugins</groupId >
273
264
<artifactId >nexus-staging-maven-plugin</artifactId >
279
270
<autoReleaseAfterClose >false</autoReleaseAfterClose >
280
271
</configuration >
281
272
</plugin >
273
+ <plugin >
274
+ <artifactId >maven-surefire-plugin</artifactId >
275
+ <version >2.22.0</version >
276
+ <dependencies >
277
+ <dependency >
278
+ <groupId >org.ow2.asm</groupId >
279
+ <artifactId >asm</artifactId >
280
+ <version >6.2.1</version >
281
+ </dependency >
282
+ </dependencies >
283
+ </plugin >
282
284
<plugin >
283
285
<groupId >org.apache.maven.plugins</groupId >
284
286
<artifactId >maven-compiler-plugin</artifactId >
287
289
<source >10</source >
288
290
<target >10</target >
289
291
</configuration >
292
+ <dependencies >
293
+ <dependency >
294
+ <groupId >org.ow2.asm</groupId >
295
+ <artifactId >asm</artifactId >
296
+ <version >6.2.1</version >
297
+ </dependency >
298
+ </dependencies >
299
+ </plugin >
300
+ <plugin >
301
+ <groupId >org.codehaus.mojo</groupId >
302
+ <artifactId >exec-maven-plugin</artifactId >
303
+ <version >1.6.0</version >
304
+ <executions >
305
+ <execution >
306
+ <goals >
307
+ <goal >java</goal >
308
+ </goals >
309
+ </execution >
310
+ </executions >
311
+ <configuration >
312
+ <mainClass >com.jgcomptech.tools.demo.Main</mainClass >
313
+ </configuration >
290
314
</plugin >
291
315
</plugins >
292
316
</build >
298
322
<artifactId >commons-lang3</artifactId >
299
323
<version >3.8.1</version >
300
324
</dependency >
325
+ <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-dbcp2 -->
326
+ <dependency >
327
+ <groupId >org.apache.commons</groupId >
328
+ <artifactId >commons-dbcp2</artifactId >
329
+ <version >2.5.0</version >
330
+ </dependency >
331
+ <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
332
+ <dependency >
333
+ <groupId >commons-codec</groupId >
334
+ <artifactId >commons-codec</artifactId >
335
+ <version >1.11</version >
336
+ </dependency >
301
337
<!-- https://mvnrepository.com/artifact/net.java.dev.jna/jna-platform -->
302
338
<dependency >
303
339
<groupId >net.java.dev.jna</groupId >
310
346
<artifactId >jna</artifactId >
311
347
<version >5.0.0</version >
312
348
</dependency >
349
+ <!-- https://mvnrepository.com/artifact/org.glassfish.jaxb/jaxb-runtime -->
350
+ <dependency >
351
+ <groupId >org.glassfish.jaxb</groupId >
352
+ <artifactId >jaxb-runtime</artifactId >
353
+ <version >2.4.0-b180830.0438</version >
354
+ </dependency >
313
355
<!-- https://mvnrepository.com/artifact/junit/junit -->
314
356
<dependency >
315
357
<groupId >junit</groupId >
322
364
<artifactId >junit-jupiter-api</artifactId >
323
365
<version >5.3.1</version >
324
366
</dependency >
325
-
326
367
<!-- https://mvnrepository.com/artifact/org.xerial/sqlite-jdbc -->
327
368
<dependency >
328
369
<groupId >org.xerial</groupId >
341
382
<artifactId >hsqldb</artifactId >
342
383
<version >2.4.1</version >
343
384
</dependency >
344
- <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-dbcp2 -->
345
- <dependency >
346
- <groupId >org.apache.commons</groupId >
347
- <artifactId >commons-dbcp2</artifactId >
348
- <version >2.5.0</version >
349
- </dependency >
350
385
<!-- https://mvnrepository.com/artifact/org.apache.maven/maven-model -->
351
386
<dependency >
352
387
<groupId >org.apache.maven</groupId >
358
393
<artifactId >org-openide-util-lookup</artifactId >
359
394
<version >RELEASE802</version >
360
395
</dependency >
361
- <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
362
- <dependency >
363
- <groupId >commons-codec</groupId >
364
- <artifactId >commons-codec</artifactId >
365
- <version >1.11</version >
366
- </dependency >
367
396
<!-- https://mvnrepository.com/artifact/org.jetbrains/annotations -->
368
397
<dependency >
369
398
<groupId >org.jetbrains</groupId >
376
405
<artifactId >jbcrypt</artifactId >
377
406
<version >0.4</version >
378
407
</dependency >
379
- <!-- https://mvnrepository.com/artifact/org.openjfx/javafx-base -->
380
- <dependency >
381
- <groupId >org.openjfx</groupId >
382
- <artifactId >javafx-base</artifactId >
383
- <version >11</version >
384
- </dependency >
385
- <!-- https://mvnrepository.com/artifact/org.openjfx/javafx-controls -->
386
- <dependency >
387
- <groupId >org.openjfx</groupId >
388
- <artifactId >javafx-controls</artifactId >
389
- <version >11</version >
390
- </dependency >
391
408
<!-- https://mvnrepository.com/artifact/org.openjfx/javafx-fxml -->
392
409
<dependency >
393
410
<groupId >org.openjfx</groupId >
394
411
<artifactId >javafx-fxml</artifactId >
395
412
<version >11</version >
396
413
</dependency >
397
- <!-- https://mvnrepository.com/artifact/org.openjfx/javafx-graphics -->
398
- <dependency >
399
- <groupId >org.openjfx</groupId >
400
- <artifactId >javafx-graphics</artifactId >
401
- <version >11</version >
402
- </dependency >
403
- <!-- https://mvnrepository.com/artifact/org.openjfx/javafx-media -->
404
- <dependency >
405
- <groupId >org.openjfx</groupId >
406
- <artifactId >javafx-media</artifactId >
407
- <version >11</version >
408
- </dependency >
409
414
</dependencies >
410
415
</project >
0 commit comments