We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 978a7fe commit 20793bfCopy full SHA for 20793bf
pom.xml
@@ -83,10 +83,12 @@
83
<plugin>
84
<groupId>org.apache.maven.plugins</groupId>
85
<artifactId>maven-compiler-plugin</artifactId>
86
- <version>3.5.1</version>
+ <version>3.9.0</version>
87
<configuration>
88
<source>1.8</source>
89
<target>1.8</target>
90
+ <showWarnings>true</showWarnings>
91
+ <failOnWarning>true</failOnWarning>
92
</configuration>
93
</plugin>
94
@@ -198,6 +200,15 @@
198
200
</dependency>
199
201
</dependencies>
202
</profile>
203
+ <profile>
204
+ <id>jdk-9-and-above</id>
205
+ <activation>
206
+ <jdk>[9,)</jdk>
207
+ </activation>
208
+ <properties>
209
+ <maven.compiler.release>8</maven.compiler.release>
210
+ </properties>
211
+ </profile>
212
<profile>
213
<id>release</id>
214
<build>
0 commit comments