summaryrefslogtreecommitdiffstats
path: root/api/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'api/pom.xml')
-rw-r--r--api/pom.xml25
1 files changed, 14 insertions, 11 deletions
diff --git a/api/pom.xml b/api/pom.xml
index 48a9beb..272f144 100644
--- a/api/pom.xml
+++ b/api/pom.xml
@@ -6,7 +6,7 @@
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>taskmanager-api</name>
- <url>http://maven.apache.org</url>
+ <url>https://git.openslx.org/openslx-ng/taskman-lite.git</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -17,13 +17,16 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
- <version>3.1</version>
+ <version>3.8.1</version>
<configuration>
- <source>1.7</source>
- <target>1.7</target>
+ <source>1.8</source>
+ <target>1.8</target>
+ <release>8</release>
+ <compilerArgument>-Xlint:all</compilerArgument>
</configuration>
</plugin>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
@@ -44,21 +47,21 @@
<dependencies>
<dependency>
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- <version>1.2.17</version>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-api</artifactId>
+ <version>[2.17,2.9999]</version>
<scope>compile</scope>
</dependency>
<dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-log4j12</artifactId>
- <version>1.7.5</version>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-core</artifactId>
+ <version>[2.17,2.9999]</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
- <version>2.2.4</version>
+ <version>[2.0,2.9999]</version>
<scope>compile</scope>
</dependency>
</dependencies>