Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Erdfelt2015-04-09 20:32:30 +0000
committerJoakim Erdfelt2015-04-09 20:32:30 +0000
commitd89aa3a86615c64edb4bfb861b790d3f818716c5 (patch)
tree1f7fbf712c7241280b59936a00de84db6a582d4b /jetty-server/pom.xml
parent4a9d9eae945409eb242ca856a34d64df7e62d005 (diff)
downloadorg.eclipse.jetty.project-d89aa3a86615c64edb4bfb861b790d3f818716c5.tar.gz
org.eclipse.jetty.project-d89aa3a86615c64edb4bfb861b790d3f818716c5.tar.xz
org.eclipse.jetty.project-d89aa3a86615c64edb4bfb861b790d3f818716c5.zip
Fixing compiler source for modules that now require Java 8
Diffstat (limited to 'jetty-server/pom.xml')
-rw-r--r--jetty-server/pom.xml8
1 files changed, 8 insertions, 0 deletions
diff --git a/jetty-server/pom.xml b/jetty-server/pom.xml
index 378f27ac18..49bb00be98 100644
--- a/jetty-server/pom.xml
+++ b/jetty-server/pom.xml
@@ -15,6 +15,14 @@
<build>
<plugins>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.8</source>
+ <target>1.7</target>
+ </configuration>
+ </plugin>
+ <plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>

Back to the top