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 cc465fd commit 150d645Copy full SHA for 150d645
unsafe/pom.xml
@@ -83,13 +83,19 @@
83
<javacArgs>
84
<!-- This option is needed to suppress warnings from sun.misc.Unsafe usage -->
85
<javacArg>-XDignore.symbol.file</javacArg>
86
+ <javacArg>-source</javacArg>
87
+ <javacArg>${java.version}</javacArg>
88
+ <javacArg>-target</javacArg>
89
90
</javacArgs>
91
</configuration>
92
</plugin>
93
<plugin>
94
<groupId>org.apache.maven.plugins</groupId>
95
<artifactId>maven-compiler-plugin</artifactId>
96
<configuration>
97
+ <source>${java.version}</source>
98
+ <target>${java.version}</target>
99
<compilerArgs>
100
101
<arg>-XDignore.symbol.file</arg>
0 commit comments