summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManuel Bentele2021-03-12 09:07:30 +0100
committerManuel Bentele2021-03-12 09:07:30 +0100
commit763c48f6ad75e8547a5d8fbfc75b97852fd3b5f0 (patch)
tree1b4993259de506d048d9b2f6a8a06912ab8bec11
parentAllow overriding default config (diff)
downloadmasterserver-763c48f6ad75e8547a5d8fbfc75b97852fd3b5f0.tar.gz
masterserver-763c48f6ad75e8547a5d8fbfc75b97852fd3b5f0.tar.xz
masterserver-763c48f6ad75e8547a5d8fbfc75b97852fd3b5f0.zip
Add support for Java 8
-rw-r--r--pom.xml16
1 files changed, 14 insertions, 2 deletions
diff --git a/pom.xml b/pom.xml
index d0f04c6..871ebf0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -21,11 +21,22 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
- <source>1.7</source>
- <target>1.7</target>
+ <source>1.8</source>
+ <target>1.8</target>
</configuration>
</plugin>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>2.4</version>
+ <executions>
+ <execution>
+ <id>default-jar</id>
+ <phase>none</phase>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
@@ -89,6 +100,7 @@
<groupId>org.openslx.bwlp</groupId>
<artifactId>master-sync-shared</artifactId>
<version>1.1-SNAPSHOT</version>
+ <scope>compile</scope>
</dependency>
<dependency>
<groupId>mysql</groupId>