diff options
| author | Tos Alles <talles@sogyo.nl> | 2016-05-17 11:51:25 +0200 |
|---|---|---|
| committer | Tos Alles <talles@sogyo.nl> | 2016-05-17 11:51:25 +0200 |
| commit | 56870ae0b2de3e715dd640e8283510152a07dbbd (patch) | |
| tree | 3e90e765f6ffe371654c2f307e18961f931f6946 | |
| parent | 23f5daa9dd21d9c177765fcd795ecb25ea4c1508 (diff) | |
Forces Maven to compile with Java 8
| -rw-r--r-- | pom.xml | 16 |
1 files changed, 15 insertions, 1 deletions
@@ -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 |
