Skip to content

Commit

Permalink
Disable build below java 11
Browse files Browse the repository at this point in the history
  • Loading branch information
don-vip committed Dec 19, 2021
1 parent 270235c commit 9e5a741
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,28 @@
<!-- ** include targets that all plugins have in common ** -->
<import file="../build-common.xml" />

<!-- Disable build below java 11 -->
<condition property="skip-compile">
<not>
<isset property="isJava11"/>
</not>
</condition>
<condition property="skip-dist">
<not>
<isset property="isJava11"/>
</not>
</condition>
<condition property="skip-javadoc">
<not>
<isset property="isJava11"/>
</not>
</condition>
<condition property="skip-test">
<not>
<isset property="isJava11"/>
</not>
</condition>

<fileset id="plugin.requires.jars" dir="${plugin.dist.dir}">
<include name="apache-commons.jar"/>
<include name="austriaaddresshelper.jar"/>
Expand Down

0 comments on commit 9e5a741

Please sign in to comment.