2019-10-31 21:43:47 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2021-05-09 06:56:44 -04:00
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2019-10-31 21:43:47 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>libraries-2</artifactId>
|
|
|
|
<name>libraries-2</name>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mapdb</groupId>
|
|
|
|
<artifactId>mapdb</artifactId>
|
|
|
|
<version>${mapdb.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.pivovarit</groupId>
|
|
|
|
<artifactId>parallel-collectors</artifactId>
|
|
|
|
<version>${parallel-collectors.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.classgraph</groupId>
|
|
|
|
<artifactId>classgraph</artifactId>
|
|
|
|
<version>${classgraph.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jbpm</groupId>
|
|
|
|
<artifactId>jbpm-test</artifactId>
|
|
|
|
<version>${jbpm.version}</version>
|
2021-10-29 00:07:04 -04:00
|
|
|
<exclusions>
|
2022-11-17 13:56:06 -05:00
|
|
|
<!-- junit4 dependency is excluded as it should to be resolved from junit-vintage-engine -->
|
|
|
|
<!-- included in parent-modules. -->
|
2021-10-29 00:07:04 -04:00
|
|
|
<exclusion>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2019-10-31 21:43:47 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>info.picocli</groupId>
|
|
|
|
<artifactId>picocli</artifactId>
|
|
|
|
<version>${picocli.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
|
|
<version>${spring-boot-starter.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.openhft</groupId>
|
|
|
|
<artifactId>chronicle-map</artifactId>
|
|
|
|
<version>${chronicle.map.version}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.sun.java</groupId>
|
|
|
|
<artifactId>tools</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>edu.uci.ics</groupId>
|
|
|
|
<artifactId>crawler4j</artifactId>
|
|
|
|
<version>${crawler4j.version}</version>
|
2023-02-14 15:11:53 -05:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.sleepycat</groupId>
|
|
|
|
<artifactId>je</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2019-10-31 21:43:47 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.jknack</groupId>
|
|
|
|
<artifactId>handlebars</artifactId>
|
|
|
|
<version>${handlebars.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.mesos</groupId>
|
|
|
|
<artifactId>mesos</artifactId>
|
|
|
|
<version>${mesos.library.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.jasperreports</groupId>
|
|
|
|
<artifactId>jasperreports</artifactId>
|
|
|
|
<version>${jasperreports.version}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hsqldb</groupId>
|
|
|
|
<artifactId>hsqldb</artifactId>
|
|
|
|
<version>${hsqldb.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-jdbc</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
2023-02-14 15:11:53 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.sleepycat</groupId>
|
|
|
|
<artifactId>je</artifactId>
|
|
|
|
<version>18.3.12</version>
|
|
|
|
</dependency>
|
2019-10-31 21:43:47 -04:00
|
|
|
</dependencies>
|
|
|
|
|
2023-02-22 12:38:11 -05:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2023-02-23 07:16:02 -05:00
|
|
|
<version>${maven-surefire-plugin.version}</version>
|
2023-02-22 12:38:11 -05:00
|
|
|
<configuration>
|
|
|
|
<argLine>--add-exports=java.base/jdk.internal.ref=ALL-UNNAMED --add-exports=java.base/sun.nio.ch=ALL-UNNAMED --add-exports=jdk.unsupported/sun.misc=ALL-UNNAMED --add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED --add-opens=jdk.compiler/com.sun.tools.javac=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.lang.reflect=ALL-UNNAMED --add-opens=java.base/java.io=ALL-UNNAMED --add-opens=java.base/java.util=ALL-UNNAMED</argLine>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2019-10-31 21:43:47 -04:00
|
|
|
<properties>
|
2023-02-14 15:11:53 -05:00
|
|
|
<mapdb.version>3.0.8</mapdb.version>
|
|
|
|
<classgraph.version>4.8.153</classgraph.version>
|
2023-03-11 17:26:28 -05:00
|
|
|
<jbpm.version>7.20.0.Final</jbpm.version>
|
2023-02-14 15:11:53 -05:00
|
|
|
<picocli.version>4.7.0</picocli.version>
|
2023-02-18 06:16:48 -05:00
|
|
|
<chronicle.map.version>3.24ea1</chronicle.map.version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<crawler4j.version>4.4.0</crawler4j.version>
|
2023-02-14 15:11:53 -05:00
|
|
|
<spring-boot-starter.version>2.7.8</spring-boot-starter.version>
|
|
|
|
<mesos.library.version>1.11.0</mesos.library.version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<parallel-collectors.version>1.1.0</parallel-collectors.version>
|
2023-02-14 15:11:53 -05:00
|
|
|
<handlebars.version>4.3.1</handlebars.version>
|
|
|
|
<jasperreports.version>6.20.0</jasperreports.version>
|
|
|
|
<spring.version>5.3.25</spring.version>
|
|
|
|
<hsqldb.version>2.7.1</hsqldb.version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</properties>
|
2019-12-05 09:56:52 -05:00
|
|
|
|
2021-08-02 14:57:15 -04:00
|
|
|
</project>
|