Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Erdfelt2015-04-10 20:21:12 +0000
committerJoakim Erdfelt2015-04-10 20:21:12 +0000
commitdc2221a152a22d527bb4dab64f5b1ccf78bc8cf3 (patch)
treeee1efbce7fef94e38b19631c0340e4361dc6b946 /jetty-util/pom.xml
parent645ee9223c1eab035b21383f0073e1c829dc9ed1 (diff)
downloadorg.eclipse.jetty.project-dc2221a152a22d527bb4dab64f5b1ccf78bc8cf3.tar.gz
org.eclipse.jetty.project-dc2221a152a22d527bb4dab64f5b1ccf78bc8cf3.tar.xz
org.eclipse.jetty.project-dc2221a152a22d527bb4dab64f5b1ccf78bc8cf3.zip
Build under Java 1.8
+ Enforcer setup to JDK 1.8+ + Java7 profiles removed (for now) + Main compile phase source/test is 1.7 + Test compile phase source/test is 1.8
Diffstat (limited to 'jetty-util/pom.xml')
-rw-r--r--jetty-util/pom.xml34
1 files changed, 0 insertions, 34 deletions
diff --git a/jetty-util/pom.xml b/jetty-util/pom.xml
index 0663d5172f..08fba94cec 100644
--- a/jetty-util/pom.xml
+++ b/jetty-util/pom.xml
@@ -15,15 +15,6 @@
<build>
<plugins>
<plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <!-- this SHOULD be 1.8 -->
- <source>1.7</source>
- <target>1.7</target>
- </configuration>
- </plugin>
- <plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
@@ -49,31 +40,6 @@
</plugin>
</plugins>
</build>
- <profiles>
- <profile>
- <id>java7-only-jetty-util</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- <jdk>1.7</jdk>
- </activation>
- <build>
- <pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <excludes>
- <exclude>org/eclipse/jetty/util/ssl/ExtendedSslContextFactory.java</exclude>
- <exclude>org/eclipse/jetty/util/ssl/SniX509ExtendedKeyManager.java</exclude>
- </excludes>
- </configuration>
- </plugin>
- </plugins>
- </pluginManagement>
- </build>
- </profile>
- </profiles>
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>

Back to the top