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>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>jboss-public-repository-group</id>
|
|
|
|
<name>JBoss Public Repository Group</name>
|
|
|
|
<url>http://repository.jboss.org/nexus/content/groups/public/</url>
|
|
|
|
<releases>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
<updatePolicy>never</updatePolicy>
|
|
|
|
</releases>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
<updatePolicy>daily</updatePolicy>
|
|
|
|
</snapshots>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<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>
|
2021-11-09 05:57:03 -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>
|
|
|
|
</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>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<mapdb.version>3.0.7</mapdb.version>
|
|
|
|
<classgraph.version>4.8.28</classgraph.version>
|
|
|
|
<jbpm.version>6.0.0.Final</jbpm.version>
|
|
|
|
<picocli.version>3.9.6</picocli.version>
|
|
|
|
<chronicle.map.version>3.17.2</chronicle.map.version>
|
|
|
|
<crawler4j.version>4.4.0</crawler4j.version>
|
|
|
|
<spring-boot-starter.version>2.1.4.RELEASE</spring-boot-starter.version>
|
|
|
|
<mesos.library.version>0.28.3</mesos.library.version>
|
|
|
|
<parallel-collectors.version>1.1.0</parallel-collectors.version>
|
|
|
|
<handlebars.version>4.1.2</handlebars.version>
|
2021-06-25 15:30:41 -04:00
|
|
|
<jasperreports.version>6.17.0</jasperreports.version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<spring.version>5.1.9.RELEASE</spring.version>
|
|
|
|
<hsqldb.version>2.5.0</hsqldb.version>
|
|
|
|
</properties>
|
2019-12-05 09:56:52 -05:00
|
|
|
|
2021-08-02 14:57:15 -04:00
|
|
|
</project>
|