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:
parent
1b63d4cfbb
commit
2b196a9ae1
17
pom.xml
17
pom.xml
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue