518 lines
16 KiB
XML
518 lines
16 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" 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">
|
|
<parent>
|
|
<artifactId>parent-modules</artifactId>
|
|
<groupId>com.baeldung</groupId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>libraries</artifactId>
|
|
<name>libraries</name>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.felix</groupId>
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
<version>3.3.0</version>
|
|
<type>maven-plugin</type>
|
|
</dependency>
|
|
</dependencies>
|
|
<extensions>true</extensions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
|
<version>2.20</version>
|
|
<configuration>
|
|
<systemProperties>
|
|
<webdriver.chrome.driver>chromedriver</webdriver.chrome.driver>
|
|
</systemProperties>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>net.serenity-bdd.maven.plugins</groupId>
|
|
<artifactId>serenity-maven-plugin</artifactId>
|
|
<version>${serenity.plugin.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<id>serenity-reports</id>
|
|
<phase>post-integration-test</phase>
|
|
<goals>
|
|
<goal>aggregate</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<!-- JDO Plugin -->
|
|
<plugin>
|
|
<groupId>org.datanucleus</groupId>
|
|
<artifactId>datanucleus-maven-plugin</artifactId>
|
|
<version>5.0.2</version>
|
|
<configuration>
|
|
<api>JDO</api>
|
|
<props>${basedir}/datanucleus.properties</props>
|
|
<log4jConfiguration>${basedir}/log4j.properties</log4jConfiguration>
|
|
<verbose>true</verbose>
|
|
<fork>false</fork>
|
|
<!-- Solve windows line too long error -->
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<phase>process-classes</phase>
|
|
<goals>
|
|
<goal>enhance</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<!-- Neuroph -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>3.0.2</version>
|
|
<configuration>
|
|
<excludes>
|
|
<exclude>**/log4j.properties</exclude>
|
|
</excludes>
|
|
<archive>
|
|
<manifest>
|
|
<mainClass>com.baeldung.neuroph.NeurophXOR</mainClass>
|
|
</manifest>
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.18.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>test</id>
|
|
<phase>test</phase>
|
|
<goals>
|
|
<goal>test</goal>
|
|
</goals>
|
|
<configuration>
|
|
<includes>
|
|
<include>test/java/com/baeldung/neuroph/XORTest.java</include>
|
|
</includes>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<!-- /Neuroph -->
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<!-- https://mvnrepository.com/artifact/org.beykery/neuroph/2.92 -->
|
|
<dependency>
|
|
<groupId>org.beykery</groupId>
|
|
<artifactId>neuroph</artifactId>
|
|
<version>${neuroph.version}</version>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/cglib/cglib -->
|
|
<dependency>
|
|
<groupId>cglib</groupId>
|
|
<artifactId>cglib</artifactId>
|
|
<version>${cglib.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-beanutils</groupId>
|
|
<artifactId>commons-beanutils</artifactId>
|
|
<version>${commons-beanutils.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>${commons-lang.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-text</artifactId>
|
|
<version>${commons-text.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-collections4</artifactId>
|
|
<version>${commons.collections.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jasypt</groupId>
|
|
<artifactId>jasypt</artifactId>
|
|
<version>${jasypt.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.javatuples</groupId>
|
|
<artifactId>javatuples</artifactId>
|
|
<version>${javatuples.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.javassist</groupId>
|
|
<artifactId>javassist</artifactId>
|
|
<version>${javaassist.version}</version>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/org.assertj/assertj-core -->
|
|
<dependency>
|
|
<groupId>org.assertj</groupId>
|
|
<artifactId>assertj-core</artifactId>
|
|
<version>${assertj.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.skyscreamer</groupId>
|
|
<artifactId>jsonassert</artifactId>
|
|
<version>${jsonassert.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.javers</groupId>
|
|
<artifactId>javers-core</artifactId>
|
|
<version>${javers.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-server</artifactId>
|
|
<version>${jetty.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-servlet</artifactId>
|
|
<version>${jetty.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>rome</groupId>
|
|
<artifactId>rome</artifactId>
|
|
<version>${rome.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.specto</groupId>
|
|
<artifactId>hoverfly-java</artifactId>
|
|
<version>0.8.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpclient</artifactId>
|
|
<version>${httpclient.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>commons-logging</artifactId>
|
|
<groupId>commons-logging</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>${commons.io.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-chain</groupId>
|
|
<artifactId>commons-chain</artifactId>
|
|
<version>${commons-chain.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-dbutils</groupId>
|
|
<artifactId>commons-dbutils</artifactId>
|
|
<version>${commons.dbutils.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.flink</groupId>
|
|
<artifactId>flink-core</artifactId>
|
|
<version>${flink.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>commons-logging</artifactId>
|
|
<groupId>commons-logging</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.flink</groupId>
|
|
<artifactId>flink-java</artifactId>
|
|
<version>${flink.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>commons-logging</artifactId>
|
|
<groupId>commons-logging</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.flink</groupId>
|
|
<artifactId>flink-test-utils_2.10</artifactId>
|
|
<version>${flink.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-math3</artifactId>
|
|
<version>3.6.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.serenity-bdd</groupId>
|
|
<artifactId>serenity-core</artifactId>
|
|
<version>${serenity.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.serenity-bdd</groupId>
|
|
<artifactId>serenity-junit</artifactId>
|
|
<version>${serenity.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.serenity-bdd</groupId>
|
|
<artifactId>serenity-jbehave</artifactId>
|
|
<version>${serenity.jbehave.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.serenity-bdd</groupId>
|
|
<artifactId>serenity-rest-assured</artifactId>
|
|
<version>${serenity.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.serenity-bdd</groupId>
|
|
<artifactId>serenity-jira-requirements-provider</artifactId>
|
|
<version>${serenity.jira.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
<version>${jackson.version}</version>
|
|
</dependency>
|
|
<!-- JDO -->
|
|
<dependency>
|
|
<groupId>org.datanucleus</groupId>
|
|
<artifactId>javax.jdo</artifactId>
|
|
<version>3.2.0-m6</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.datanucleus</groupId>
|
|
<artifactId>datanucleus-core</artifactId>
|
|
<version>5.1.0-m1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.datanucleus</groupId>
|
|
<artifactId>datanucleus-api-jdo</artifactId>
|
|
<version>5.1.0-m1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.datanucleus</groupId>
|
|
<artifactId>datanucleus-rdbms</artifactId>
|
|
<version>5.1.0-m1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.datanucleus</groupId>
|
|
<artifactId>datanucleus-maven-plugin</artifactId>
|
|
<version>5.0.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.datanucleus</groupId>
|
|
<artifactId>datanucleus-xml</artifactId>
|
|
<version>5.0.0-release</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.openhft</groupId>
|
|
<artifactId>chronicle</artifactId>
|
|
<version>3.6.4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-web</artifactId>
|
|
<version>4.3.8.RELEASE</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.serenity-bdd</groupId>
|
|
<artifactId>serenity-spring</artifactId>
|
|
<version>${serenity.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.serenity-bdd</groupId>
|
|
<artifactId>serenity-screenplay</artifactId>
|
|
<version>${serenity.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.serenity-bdd</groupId>
|
|
<artifactId>serenity-screenplay-webdriver</artifactId>
|
|
<version>${serenity.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.rest-assured</groupId>
|
|
<artifactId>spring-mock-mvc</artifactId>
|
|
<version>3.0.3</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.multiverse</groupId>
|
|
<artifactId>multiverse-core</artifactId>
|
|
<version>${multiverse.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.zaxxer</groupId>
|
|
<artifactId>HikariCP</artifactId>
|
|
<version>2.6.1</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.h2database</groupId>
|
|
<artifactId>h2</artifactId>
|
|
<version>${h2.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>pl.pragmatists</groupId>
|
|
<artifactId>JUnitParams</artifactId>
|
|
<version>${jUnitParams.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.quartz-scheduler</groupId>
|
|
<artifactId>quartz</artifactId>
|
|
<version>2.3.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>one.util</groupId>
|
|
<artifactId>streamex</artifactId>
|
|
<version>0.6.5</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jooq</groupId>
|
|
<artifactId>jool</artifactId>
|
|
<version>0.9.12</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openjdk.jmh</groupId>
|
|
<artifactId>jmh-core</artifactId>
|
|
<version>1.19</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openjdk.jmh</groupId>
|
|
<artifactId>jmh-generator-annprocess</artifactId>
|
|
<version>1.19</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.netty</groupId>
|
|
<artifactId>netty-all</artifactId>
|
|
<version>${netty.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>${junit.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>info.debatty</groupId>
|
|
<artifactId>java-lsh</artifactId>
|
|
<version>${java-lsh.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>au.com.dius</groupId>
|
|
<artifactId>pact-jvm-consumer-junit_2.11</artifactId>
|
|
<version>${pact.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.codehaus.groovy</groupId>
|
|
<artifactId>groovy-all</artifactId>
|
|
<version>2.4.10</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.awaitility</groupId>
|
|
<artifactId>awaitility</artifactId>
|
|
<version>${awaitility.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.awaitility</groupId>
|
|
<artifactId>awaitility-proxy</artifactId>
|
|
<version>${awaitility.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hamcrest</groupId>
|
|
<artifactId>java-hamcrest</artifactId>
|
|
<version>${org.hamcrest.java-hamcrest.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.agkn</groupId>
|
|
<artifactId>hll</artifactId>
|
|
<version>${hll.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.bytebuddy</groupId>
|
|
<artifactId>byte-buddy</artifactId>
|
|
<version>${bytebuddy.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.bytebuddy</groupId>
|
|
<artifactId>byte-buddy-agent</artifactId>
|
|
<version>${bytebuddy.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.pcollections</groupId>
|
|
<artifactId>pcollections</artifactId>
|
|
<version>${pcollections.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.machinezoo.noexception</groupId>
|
|
<artifactId>noexception</artifactId>
|
|
<version>1.1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.collections</groupId>
|
|
<artifactId>eclipse-collections</artifactId>
|
|
<version>${eclipse-collections.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<properties>
|
|
<multiverse.version>0.7.0</multiverse.version>
|
|
<cglib.version>3.2.4</cglib.version>
|
|
<commons-lang.version>3.5</commons-lang.version>
|
|
<commons-text.version>1.1</commons-text.version>
|
|
<commons-beanutils.version>1.9.3</commons-beanutils.version>
|
|
<commons-chain.version>1.2</commons-chain.version>
|
|
<jasypt.version>1.9.2</jasypt.version>
|
|
<javatuples.version>1.2</javatuples.version>
|
|
<javaassist.version>3.21.0-GA</javaassist.version>
|
|
<assertj.version>3.6.2</assertj.version>
|
|
<jsonassert.version>1.5.0</jsonassert.version>
|
|
<javers.version>3.1.0</javers.version>
|
|
<jetty.version>9.4.3.v20170317</jetty.version>
|
|
<httpclient.version>4.5.3</httpclient.version>
|
|
<commons.io.version>2.5</commons.io.version>
|
|
<commons.dbutils.version>1.6</commons.dbutils.version>
|
|
<h2.version>1.4.196</h2.version>
|
|
<jetty.version>9.4.2.v20170220</jetty.version>
|
|
<httpclient.version>4.5.3</httpclient.version>
|
|
<commons.io.version>2.5</commons.io.version>
|
|
<flink.version>1.2.0</flink.version>
|
|
<jackson.version>2.8.5</jackson.version>
|
|
<neuroph.version>2.92</neuroph.version>
|
|
<serenity.version>1.4.0</serenity.version>
|
|
<serenity.jbehave.version>1.24.0</serenity.jbehave.version>
|
|
<serenity.jira.version>1.1.3-rc.5</serenity.jira.version>
|
|
<serenity.plugin.version>1.4.0</serenity.plugin.version>
|
|
<jUnitParams.version>1.1.0</jUnitParams.version>
|
|
<netty.version>4.1.10.Final</netty.version>
|
|
<commons.collections.version>4.1</commons.collections.version>
|
|
<junit.version>4.12</junit.version>
|
|
<java-lsh.version>0.10</java-lsh.version>
|
|
<pact.version>3.5.0</pact.version>
|
|
<awaitility.version>3.0.0</awaitility.version>
|
|
<org.hamcrest.java-hamcrest.version>2.0.0.0</org.hamcrest.java-hamcrest.version>
|
|
<hll.version>1.6.0</hll.version>
|
|
<bytebuddy.version>1.7.1</bytebuddy.version>
|
|
<pcollections.version>2.1.2</pcollections.version>
|
|
<rome.version>1.0</rome.version>
|
|
<eclipse-collections.version>8.2.0</eclipse-collections.version>
|
|
</properties>
|
|
</project> |