Last change
on this file since 35890 was 35703, checked in by DevCharly, 4 years ago |
see #19819 - flatlaf: fixed missing properties files in dist jar
|
File size:
1.3 KB
|
Rev | Line | |
---|
[35482] | 1 | <?xml version="1.0" encoding="utf-8"?>
|
---|
| 2 | <project name="flatlaf" default="dist" basedir=".">
|
---|
| 3 | <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
|
---|
[35536] | 4 | <property name="plugin.main.version" value="16974"/>
|
---|
[35482] | 5 |
|
---|
| 6 | <property name="plugin.author" value="simon04"/>
|
---|
| 7 | <property name="plugin.class" value="org.openstreetmap.josm.plugins.flatlaf.FlatLafPlugin"/>
|
---|
| 8 | <property name="plugin.description" value="FlatLaf - Flat Look and Feel"/>
|
---|
[35537] | 9 | <property name="plugin.icon" value="images/FlatLaf.svg"/>
|
---|
[35482] | 10 | <property name="plugin.early" value="true" />
|
---|
[35536] | 11 | <property name="plugin.stage" value="-4" /><!-- very early plugin -->
|
---|
[35482] | 12 | <property name="plugin.link" value="https://www.formdev.com/flatlaf/"/>
|
---|
| 13 |
|
---|
| 14 | <!-- ** include targets that all plugins have in common ** -->
|
---|
| 15 | <import file="../build-common.xml"/>
|
---|
| 16 | <target name="pre-compile" depends="fetch_dependencies"/>
|
---|
| 17 |
|
---|
[35703] | 18 | <target name="setup-dist">
|
---|
| 19 | <antcall target="setup-dist-default"/>
|
---|
| 20 | <copy todir="${plugin.build.dir}">
|
---|
| 21 | <fileset dir="${plugin.src.dir}" includes="**/*.properties"/>
|
---|
| 22 | </copy>
|
---|
| 23 | </target>
|
---|
| 24 |
|
---|
[35700] | 25 | <target name="additional-manifest">
|
---|
| 26 | <manifest file="MANIFEST" mode="update">
|
---|
| 27 | <attribute name="Multi-Release" value="true"/>
|
---|
| 28 | </manifest>
|
---|
| 29 | </target>
|
---|
[35482] | 30 | </project>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.