Move to JDK_1_6 in maven project
This commit is contained in:
+26
-1
@@ -152,7 +152,7 @@
|
||||
<version>${surefire-version}</version>
|
||||
<configuration>
|
||||
<forkMode>once</forkMode>
|
||||
<jvm>${env.JDK_16}/bin/java</jvm>
|
||||
<jvm>${jdk_1_6}/bin/java</jvm>
|
||||
<useSystemClassLoader>false</useSystemClassLoader>
|
||||
<useManifestOnlyJar>false</useManifestOnlyJar>
|
||||
<failIfNoTests>false</failIfNoTests>
|
||||
@@ -275,6 +275,31 @@
|
||||
<jdk_1_8>${env.JDK_18}</jdk_1_8>
|
||||
</properties>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>jdk_1_6_new</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>env.JDK_1_6</name>
|
||||
</property>
|
||||
<activeByDefault>true</activeByDefault>
|
||||
</activation>
|
||||
<properties>
|
||||
<jdk_1_6>${env.JDK_1_6}</jdk_1_6>
|
||||
</properties>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>jdk_1_6_old</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>!env.JDK_1_6</name>
|
||||
</property>
|
||||
<activeByDefault>true</activeByDefault>
|
||||
</activation>
|
||||
<properties>
|
||||
<jdk_1_6>${env.JDK_16}</jdk_1_6>
|
||||
</properties>
|
||||
</profile>
|
||||
|
||||
<profile>
|
||||
<id>sign-artifacts</id>
|
||||
<build>
|
||||
|
||||
Reference in New Issue
Block a user