Changeset 35963 in osm for applications/editors/josm/plugins
- Timestamp:
- 2022-04-27T18:06:11+02:00 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/build-common.xml
r35923 r35963 64 64 <condition property="isJava15"><matches string="${ant.java.version}" pattern="1[5-9]" /></condition> 65 65 <condition property="isJava16"><matches string="${ant.java.version}" pattern="1[6-9]" /></condition> 66 <condition property="isJava 18"><matches string="${ant.java.version}" pattern="1[8-9]" /></condition>67 <!-- Disable jacoco on Java 18+, see https://github.com/jacoco/jacoco/pull/1132-->66 <condition property="isJava20"><matches string="${ant.java.version}" pattern="2[0-9]" /></condition> 67 <!-- Disable jacoco on Java 20+ (Jacoco does not yet support Java 20+) --> 68 68 <condition property="coverageByDefault"> 69 69 <not> 70 <isset property="isJava 18"/>70 <isset property="isJava20"/> 71 71 </not> 72 72 </condition> … … 612 612 <testclasses outputDir="${plugin.test.dir}/report"> 613 613 <fileset dir="${plugin.test.dir}/build/unit" includes="**/*Test.class"/> 614 <fork>614 <fork> 615 615 <jvmarg value="${jacocoagent}" if:set="jacocoagent" /> 616 616 <jvmarg value="-Dfile.encoding=UTF-8"/> 617 617 <jvmarg value="-javaagent:${jmockit.jar}"/> 618 619 618 <jvmarg value="-Djunit.jupiter.extensions.autodetection.enabled=true"/> 619 <jvmarg value="-Djunit.jupiter.execution.parallel.enabled=true"/> 620 620 <jvmarg value="--add-modules" if:set="isJava9" unless:set="isJava11" /> 621 621 <jvmarg value="java.activation,java.se.ee" if:set="isJava9" unless:set="isJava11" /> … … 631 631 <sysproperty key="java.awt.headless" value="true"/> 632 632 <sysproperty key="suppressPermanentFailure" value="${suppressPermanentFailure}"/> 633 634 635 636 633 <sysproperty key="junit.jupiter.execution.parallel.enabled" value="${junit.jupiter.execution.parallel.enabled}" if:set="junit.jupiter.execution.parallel.enabled"/> 634 <sysproperty key="junit.jupiter.execution.parallel.mode.default" value="${junit.jupiter.execution.parallel.mode.default}" if:set="junit.jupiter.execution.parallel.mode.default"/> 635 <sysproperty key="junit.jupiter.execution.parallel.mode.classes.default" value="${junit.jupiter.execution.parallel.mode.classes.default}" if:set="junit.jupiter.execution.parallel.mode.classes.default"/> 636 </fork> 637 637 <listener type="legacy-plain" /> 638 638 <listener type="legacy-xml" />
Note:
See TracChangeset
for help on using the changeset viewer.