Changeset 34244 in osm for applications/editors/josm/plugins/build-common.xml
- Timestamp:
- 2018-06-03T23:00:32+02:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/build-common.xml
r34225 r34244 30 30 <property name="ant.build.javac.source" value="1.8"/> 31 31 <property name="plugin.jar" location="${plugin.dist.dir}/${ant.project.name}.jar"/> 32 <property name="plugin.sources.jar" location="${plugin.dist.dir}/${ant.project.name}-sources.jar"/> 33 <property name="plugin.javadoc.jar" location="${plugin.dist.dir}/${ant.project.name}-javadoc.jar"/> 32 34 <property name="javac.compiler" value="com.google.errorprone.ErrorProneAntCompilerAdapter" /> 33 35 … … 121 123 <!-- 122 124 ********************************************************** 123 ** dist - creates the plugin jar 124 ********************************************************** 125 --> 126 <target name="dist" depends="compile, revision" unless="skip-dist">125 ** dist - creates the plugin jars 126 ********************************************************** 127 --> 128 <target name="dist" depends="compile,javadoc,revision" unless="skip-dist"> 127 129 <echo message="creating ${ant.project.name}.jar ... "/> 128 130 <antcall target="setup-dist" /> … … 184 186 </restrict> 185 187 </jar> 188 <jar destfile="${plugin.sources.jar}" basedir="${plugin.src.dir}"/> 189 <jar destfile="${plugin.javadoc.jar}" basedir="${plugin.doc.dir}"/> 186 190 <delete file="MANIFEST" failonerror="no"/> 187 191 <antcall target="post-dist" /> … … 327 331 <delete dir="${checkstyle-build.dir}"/> 328 332 <delete file="${plugin.jar}"/> 333 <delete file="${plugin.sources.jar}"/> 334 <delete file="${plugin.javadoc.jar}"/> 329 335 </target> 330 336 <!--
Note:
See TracChangeset
for help on using the changeset viewer.