Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimone Bordet2014-03-13 15:30:35 +0000
committerSimone Bordet2014-03-13 15:30:35 +0000
commit2b59cd305d0ebaba94b6de77d546329741d867fb (patch)
tree4b0e009410d8b5e0e9a72e68617cac1098101693 /jetty-spdy/pom.xml
parent655ed356aad925899e383b0b3c6c383543536800 (diff)
downloadorg.eclipse.jetty.project-2b59cd305d0ebaba94b6de77d546329741d867fb.tar.gz
org.eclipse.jetty.project-2b59cd305d0ebaba94b6de77d546329741d867fb.tar.xz
org.eclipse.jetty.project-2b59cd305d0ebaba94b6de77d546329741d867fb.zip
Removed section to enforce usage of JDK 7 (it's implicit in Jetty 9).
Diffstat (limited to 'jetty-spdy/pom.xml')
-rw-r--r--jetty-spdy/pom.xml26
1 files changed, 0 insertions, 26 deletions
diff --git a/jetty-spdy/pom.xml b/jetty-spdy/pom.xml
index 9510a4d49e..61777c8750 100644
--- a/jetty-spdy/pom.xml
+++ b/jetty-spdy/pom.xml
@@ -34,32 +34,6 @@
<build>
<plugins>
<plugin>
- <artifactId>maven-enforcer-plugin</artifactId>
- <executions>
- <execution>
- <id>require-jdk7</id>
- <goals>
- <goal>enforce</goal>
- </goals>
- <configuration>
- <rules>
- <requireJavaVersion>
- <version>[1.7,)</version>
- </requireJavaVersion>
- </rules>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.3.2</version>
- <configuration>
- <source>1.7</source>
- <target>1.7</target>
- </configuration>
- </plugin>
- <plugin>
<artifactId>maven-pmd-plugin</artifactId>
<configuration>
<skip>true</skip>

Back to the top