Changeset 36139 in osm
- Timestamp:
- 2023-09-15T17:07:20+02:00 (14 months ago)
- Location:
- applications/viewer/jmapviewer
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/viewer/jmapviewer/build.xml
r35919 r36139 2 2 <project default="all" name="jmapviewer" xmlns:jacoco="antlib:org.jacoco.ant" xmlns:if="ant:if" xmlns:unless="ant:unless"> 3 3 4 <property name="java.lang.version" value=" 1.8" />4 <property name="java.lang.version" value="8" /> 5 5 <dirname property="base.dir" file="${ant.file.jmapviewer}"/> 6 6 <property name="tools.dir" location="${base.dir}/tools"/> … … 58 58 59 59 <target name="build" depends="clean"> 60 <javac srcdir="src" destdir="bin" source="${java.lang.version}" target="${java.lang.version}" debug="true" includeantruntime="false" encoding="UTF-8"> 60 <!-- compile module info - we need to compile everything to ensure that all requires are there --> 61 <javac srcdir="src" destdir="bin" release="9" debug="true" includeantruntime="false" encoding="UTF-8" if:set="isJava9"> 62 <include name="module-info.java" /> 63 <include name="org/openstreetmap/gui/jmapviewer/**" /> 64 </javac> 65 66 <!-- Remove the files compiled with Java 9 so that the next compile stage will compile to the appropriate version --> 67 <delete> 68 <fileset dir="bin"> 69 <include name="org/openstreetmap/gui/jmapviewer/**" /> 70 </fileset> 71 </delete> 72 73 <javac srcdir="src" destdir="bin" release="${java.lang.version}" debug="true" includeantruntime="false" encoding="UTF-8"> 61 74 <include name="org/openstreetmap/gui/jmapviewer/**" /> 62 75 </javac> … … 80 93 <!-- Create the JAR file containing the compiled class files --> 81 94 <jar destfile="JMapViewer.jar" filesetmanifest="mergewithoutmain"> 82 <fileset dir="bin" includes=" **/jmapviewer/**" />95 <fileset dir="bin" includes="module-info.class,**/jmapviewer/**" /> 83 96 </jar> 84 97 <!-- Create the JAR file containing the source java files --> 85 98 <jar destfile="JMapViewer_src.jar" filesetmanifest="mergewithoutmain"> 86 <fileset dir="src" includes=" **/jmapviewer/**" />99 <fileset dir="src" includes="module-info.java,**/jmapviewer/**" /> 87 100 </jar> 88 101 </target> … … 123 136 classpath="tools/checkstyle/checkstyle-all.jar"/> 124 137 <checkstyle config="tools/checkstyle/jmapviewer_checks.xml"> 125 <fileset dir="${basedir}/src" includes="**/*.java" /> 138 <!-- Exclude the module-info since checkstyle currently cannot parse it --> 139 <fileset dir="${basedir}/src" includes="**/*.java" excludes="module-info.java" /> 126 140 <formatter type="xml" toFile="checkstyle-jmapviewer.xml"/> 127 141 </checkstyle>
Note:
See TracChangeset
for help on using the changeset viewer.