Move to JDK_1_7 in maven project

This commit is contained in:
Nikolay Krasko
2022-08-11 15:48:23 +02:00
committed by Space
parent 930c63c324
commit 7c11ddf7ac
2 changed files with 51 additions and 1 deletions
+24
View File
@@ -299,6 +299,30 @@
<jdk_1_6>${env.JDK_16}</jdk_1_6>
</properties>
</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>
<id>sign-artifacts</id>