454952 - Allow Jetty to run in Java 8 compact 3 profile

+ Step 1, enable a profile that will use the Java 8 "compact 3" profile
  during compilation time.
This commit is contained in:
Joakim Erdfelt 2014-12-11 15:12:59 -07:00
parent 1b63d4cfbb
commit 2b196a9ae1
1 changed files with 16 additions and 1 deletions

17
pom.xml
View File

@ -753,7 +753,6 @@
</plugins>
</build>
</profile>
<profile>
<id>eclipse-release</id>
<modules>
@ -863,6 +862,22 @@
</plugins>
</build>
</profile>
<profile>
<id>compact3</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerArguments>
<profile>compact3</profile>
</compilerArguments>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>api-change</id>
<build>