summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorTos Alles <talles@sogyo.nl>2016-05-17 11:51:25 +0200
committerTos Alles <talles@sogyo.nl>2016-05-17 11:51:25 +0200
commit56870ae0b2de3e715dd640e8283510152a07dbbd (patch)
tree3e90e765f6ffe371654c2f307e18961f931f6946 /pom.xml
parent23f5daa9dd21d9c177765fcd795ecb25ea4c1508 (diff)
Forces Maven to compile with Java 8
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml16
1 files changed, 15 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index f23dfaf..4c05048 100644
--- a/pom.xml
+++ b/pom.xml
@@ -7,5 +7,19 @@
<groupId>nl.sogyo.java-opdrachten</groupId>
<artifactId>java-opdrachten</artifactId>
<version>1.0-SNAPSHOT</version>
-
+
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>3.3</version>
+ <configuration>
+ <target>1.8</target>
+ <source>1.8</source>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
</project> \ No newline at end of file