Changeset 34604 in osm
- Timestamp:
- 2018-08-27T13:27:51+02:00 (6 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/build-common.xml
r34601 r34604 195 195 <param name="property.value" value="${plugin.canloadatruntime}"/> 196 196 </antcall> 197 <antcall target="add-manifest-attribute"> 198 <param name="manifest.attribute" value="Plugin-Minimum-Java-Version"/> 199 <param name="property.name" value="plugin.minimum.java.version"/> 200 <param name="property.value" value="${plugin.minimum.java.version}"/> 201 </antcall> 197 202 <antcall target="additional-manifest" /> 198 <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}" manifest="MANIFEST" manifestencoding="UTF-8" >203 <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}" manifest="MANIFEST" manifestencoding="UTF-8" duplicate="preserve" level="9"> 199 204 <restrict> 200 205 <not><or> … … 205 210 <name name="META-INF/*.RSA"/> 206 211 <name name="META-INF/*.SF"/> 212 <name name="module-info.class"/> 207 213 </or></not> 208 214 <archives> … … 213 219 </restrict> 214 220 </jar> 215 <jar destfile="${plugin.sources.jar}" basedir="${plugin.src.dir}" />216 <jar destfile="${plugin.javadoc.jar}" basedir="${plugin.doc.dir}" />221 <jar destfile="${plugin.sources.jar}" basedir="${plugin.src.dir}" level="9"/> 222 <jar destfile="${plugin.javadoc.jar}" basedir="${plugin.doc.dir}" level="9"/> 217 223 <delete file="MANIFEST" failonerror="no"/> 218 224 <antcall target="post-dist" /> -
applications/editors/josm/plugins/openjfx/build.xml
r34603 r34604 12 12 <property name="plugin.class" value="org.openstreetmap.josm.plugins.jaxb.OpenJfxPlugin"/> 13 13 <property name="plugin.description" value="Provides the OpenJFX (JavaFX) library for JOSM core and other JOSM plugins. Provides additional features such as MP3 audio playback."/> 14 <property name="plugin.minimum.java.version" value="11"/> 14 15 <!--<property name="plugin.icon" value="..."/>--> 15 16 <!--<property name="plugin.link" value="..."/>-->
Note:
See TracChangeset
for help on using the changeset viewer.