Skip to content

Commit d5b9d4f

Browse files
author
Emil Ejbyfeldt
committed
Add java profiles with activations
1 parent 7e9ca2f commit d5b9d4f

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

pom.xml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3475,6 +3475,36 @@
34753475

34763476
<profiles>
34773477

3478+
<profile>
3479+
<id>java-8</id>
3480+
<activation>
3481+
<jdk>1.8</jdk>
3482+
</activation>
3483+
<properties>
3484+
<java.version>1.8</java.version>
3485+
</properties>
3486+
</profile>
3487+
3488+
<profile>
3489+
<id>java-11</id>
3490+
<activation>
3491+
<jdk>11</jdk>
3492+
</activation>
3493+
<properties>
3494+
<java.version>11</java.version>
3495+
</properties>
3496+
</profile>
3497+
3498+
<profile>
3499+
<id>java-17</id>
3500+
<activation>
3501+
<jdk>17</jdk>
3502+
</activation>
3503+
<properties>
3504+
<java.version>17</java.version>
3505+
</properties>
3506+
</profile>
3507+
34783508
<!--
34793509
This profile is enabled automatically by the sbt build. It changes the scope for shaded
34803510
dependencies, since we don't shade it in the artifacts generated by the sbt build.

0 commit comments

Comments
 (0)