Skip to content

Commit

Permalink
Add missing java13-bytecode profile (#1584)
Browse files Browse the repository at this point in the history
  • Loading branch information
Godin committed Feb 25, 2024
1 parent 2b9c1a4 commit fd872de
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions org.jacoco.core.test.validation/pom.xml
Expand Up @@ -237,6 +237,30 @@
</modules>
</profile>

<profile>
<id>java13-bytecode</id>
<activation>
<property>
<name>bytecode.version</name>
<value>13</value>
</property>
</activation>
<properties>
<kotlin.compiler.jvmTarget>13</kotlin.compiler.jvmTarget>
<groovy.targetBytecode>13</groovy.targetBytecode>
<!-- see respective profile in org.jacoco.build about this override -->
<maven.compiler.source>13</maven.compiler.source>
<maven.compiler.target>13</maven.compiler.target>
</properties>
<modules>
<module>../org.jacoco.core.test.validation.kotlin</module>
<module>../org.jacoco.core.test.validation.java7</module>
<module>../org.jacoco.core.test.validation.java8</module>
<module>../org.jacoco.core.test.validation.groovy</module>
<module>../org.jacoco.core.test.validation.scala</module>
</modules>
</profile>

<profile>
<id>java14-bytecode</id>
<activation>
Expand Down

0 comments on commit fd872de

Please sign in to comment.