Skip to content

Commit aa20cac

Browse files
committed
Remove java9+ maven profile
Since the baseline is now Java 11 in which --illegal-access=permit is the default [1], this profile is not necessary anymore. [1]: https://docs.oracle.com/en/java/javase/11/tools/java.html#GUID-3B1CE181-CD30-4178-9602-230B800D4FAE__GUID-5D972434-DC15-4D1D-8473-56085896D5F2
1 parent 370d2f3 commit aa20cac

File tree

1 file changed

+0
-30
lines changed

1 file changed

+0
-30
lines changed

pom.xml

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -216,34 +216,4 @@
216216
</plugins>
217217
</build>
218218

219-
<profiles>
220-
<profile>
221-
<id>java9+</id>
222-
<activation>
223-
<jdk>[9,)</jdk>
224-
</activation>
225-
<build>
226-
<plugins>
227-
<plugin>
228-
<groupId>org.apache.maven.plugins</groupId>
229-
<artifactId>maven-compiler-plugin</artifactId>
230-
<version>${maven-compiler-plugin.version}</version>
231-
<configuration>
232-
<verbose>true</verbose>
233-
<source>${java.version}</source>
234-
<target>${java.version}</target>
235-
<showWarnings>true</showWarnings>
236-
<fork>true</fork>
237-
<compilerArgs>
238-
<arg>-verbose</arg>
239-
<arg>-Xlint:unchecked</arg>
240-
<arg>-J--illegal-access=permit</arg>
241-
</compilerArgs>
242-
</configuration>
243-
</plugin>
244-
</plugins>
245-
</build>
246-
</profile>
247-
</profiles>
248-
249219
</project>

0 commit comments

Comments
 (0)