Skip to content

Commit

Permalink
Fixes piranhacloud#3335 - Only build annotationscan-classfile with JDK21
Browse files Browse the repository at this point in the history
  • Loading branch information
Thihup committed Jun 20, 2023
1 parent 694d1e6 commit 6b4de9a
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion extension/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

<modules>
<module>annotationscan</module>
<module>annotationscan-classfile</module>
<module>apache-fileupload</module>
<module>bytesstreamhandler</module>
<module>coreprofile</module>
Expand Down Expand Up @@ -76,4 +75,16 @@
<scope>test</scope>
</dependency>
</dependencies>

<profiles>
<profile>
<id>jdk21</id>
<activation>
<jdk>21</jdk>
</activation>
<modules>
<module>annotationscan-classfile</module>
</modules>
</profile>
</profiles>
</project>

0 comments on commit 6b4de9a

Please sign in to comment.