Move to JDK_1_7 in maven project
This commit is contained in:
@@ -299,6 +299,30 @@
|
|||||||
<jdk_1_6>${env.JDK_16}</jdk_1_6>
|
<jdk_1_6>${env.JDK_16}</jdk_1_6>
|
||||||
</properties>
|
</properties>
|
||||||
</profile>
|
</profile>
|
||||||
|
<profile>
|
||||||
|
<id>jdk_1_7_new</id>
|
||||||
|
<activation>
|
||||||
|
<property>
|
||||||
|
<name>env.JDK_1_7</name>
|
||||||
|
</property>
|
||||||
|
<activeByDefault>true</activeByDefault>
|
||||||
|
</activation>
|
||||||
|
<properties>
|
||||||
|
<jdk_1_7>${env.JDK_1_7}</jdk_1_7>
|
||||||
|
</properties>
|
||||||
|
</profile>
|
||||||
|
<profile>
|
||||||
|
<id>jdk_1_7_old</id>
|
||||||
|
<activation>
|
||||||
|
<property>
|
||||||
|
<name>!env.JDK_1_7</name>
|
||||||
|
</property>
|
||||||
|
<activeByDefault>true</activeByDefault>
|
||||||
|
</activation>
|
||||||
|
<properties>
|
||||||
|
<jdk_1_7>${env.JDK_17}</jdk_1_7>
|
||||||
|
</properties>
|
||||||
|
</profile>
|
||||||
|
|
||||||
<profile>
|
<profile>
|
||||||
<id>sign-artifacts</id>
|
<id>sign-artifacts</id>
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<kotlin.compiler.jdkHome>${env.JDK_17}</kotlin.compiler.jdkHome>
|
<kotlin.compiler.jdkHome>${jdk_1_7}</kotlin.compiler.jdkHome>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
@@ -45,4 +45,30 @@
|
|||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
<profiles>
|
||||||
|
<profile>
|
||||||
|
<id>jdk_1_7_new</id>
|
||||||
|
<activation>
|
||||||
|
<property>
|
||||||
|
<name>env.JDK_1_7</name>
|
||||||
|
</property>
|
||||||
|
<activeByDefault>true</activeByDefault>
|
||||||
|
</activation>
|
||||||
|
<properties>
|
||||||
|
<jdk_1_7>${env.JDK_1_7}</jdk_1_7>
|
||||||
|
</properties>
|
||||||
|
</profile>
|
||||||
|
<profile>
|
||||||
|
<id>jdk_1_7_old</id>
|
||||||
|
<activation>
|
||||||
|
<property>
|
||||||
|
<name>!env.JDK_1_7</name>
|
||||||
|
</property>
|
||||||
|
<activeByDefault>true</activeByDefault>
|
||||||
|
</activation>
|
||||||
|
<properties>
|
||||||
|
<jdk_1_7>${env.JDK_17}</jdk_1_7>
|
||||||
|
</properties>
|
||||||
|
</profile>
|
||||||
|
</profiles>
|
||||||
</project>
|
</project>
|
||||||
|
|||||||
Reference in New Issue
Block a user