122 lines
4.0 KiB
XML
122 lines
4.0 KiB
XML
<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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>ue.nebulouscloud</groupId>
|
|
<artifactId>exn-connector-java</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<properties>
|
|
<maven.compiler.release>11</maven.compiler.release>
|
|
<groovy.version>3.0.10</groovy.version>
|
|
<spock.version>2.1-groovy-3.0</spock.version>
|
|
<junit.version>4.13.2</junit.version>
|
|
<commons.math.version>3.6.1</commons.math.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<!-- Groovy -->
|
|
<dependency>
|
|
<groupId>org.codehaus.groovy</groupId>
|
|
<artifactId>groovy-all</artifactId>
|
|
<version>${groovy.version}</version>
|
|
<type>pom</type>
|
|
</dependency>
|
|
|
|
<!-- Guava -->
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
<version>31.0.1-jre</version>
|
|
</dependency>
|
|
|
|
<!-- Apache Qpid ProtonJ2 -->
|
|
<dependency>
|
|
<groupId>org.apache.qpid</groupId>
|
|
<artifactId>protonj2-client</artifactId>
|
|
<version>1.0.0-M16</version>
|
|
</dependency>
|
|
|
|
<!-- SLF4J -->
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-simple</artifactId>
|
|
<version>1.7.12</version>
|
|
</dependency>
|
|
|
|
<!-- Owner -->
|
|
<dependency>
|
|
<groupId>org.aeonbits.owner</groupId>
|
|
<artifactId>owner</artifactId>
|
|
<version>1.0.12</version>
|
|
</dependency>
|
|
|
|
<!-- Spock Framework -->
|
|
<dependency>
|
|
<groupId>org.spockframework</groupId>
|
|
<artifactId>spock-core</artifactId>
|
|
<version>${spock.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- JUnit -->
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>${junit.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- Apache Commons Math -->
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-math3</artifactId>
|
|
<version>${commons.math.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<!-- Groovy Compiler -->
|
|
<plugin>
|
|
<groupId>org.codehaus.gmavenplus</groupId>
|
|
<artifactId>gmavenplus-plugin</artifactId>
|
|
<version>1.12.1</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>compile</goal> <!-- Compiles main Groovy sources -->
|
|
<goal>compileTests</goal> <!-- Compiles Groovy test sources -->
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<!-- Java Compiler -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.8.1</version>
|
|
<configuration>
|
|
<source>${maven.compiler.source}</source>
|
|
<target>${maven.compiler.target}</target>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<!-- Surefire Plugin for JUnit tests -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.22.2</version>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|
|
|