Ignore:
Timestamp:
2024-10-23T15:12:55+02:00 (3 months ago)
Author:
taylor.smock
Message:

Drop most ivy files

This is mostly to ensure there is one place for dependency updates to occur, not
two.

lwjgl and geotools did not have their ivy files dropped, since there was a diff
between ivy and maven dependency builds. This is most likely due to dependency
exclusions. The geotools pom.xml now has all the exclusions from the ivy.xml file
now.

jts also had a diff between ivy and maven dependency builds, but the missing
files were test files (specifically, *Test.class) and test related files.

This additionally bumps the minimum JOSM version for everything that had an
ivy.xml file to r19044 for rebuild purposes (r19044 is Java 11+ only).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/MicrosoftStreetside/build.xml

    r36228 r36348  
    2020  </fileset>
    2121  <target name="pre-compile" depends="fetch_dependencies">
    22     <!-- include fetch_dependencies task -->
    23     <ivy:retrieve conf="provided,default"/>
    24     <!--<ivy:cachepath pathid="compile.path" conf="default,provided"/>-->
    25   </target>
    26   <target name="build-jar">
    27     <ivy:resolve/>
    28     <ivy:cachefileset setid="ivy.default.path" conf="default"/>
    29     <jar destfile="${basedir}/dependencies.jar" duplicate="preserve" level="0">
    30       <zipgroupfileset refid="ivy.default.path"/>
    31     </jar>
    32     <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}" manifest="${manifest}" manifestencoding="UTF-8" duplicate="preserve" level="9" excludes="${basedir}/dependencies.jar">
    33       <zipfileset src="${basedir}/dependencies.jar" excludes="META-INF/maven/* META-INF/DEPENDENCIES META-INF/LICENSE META-INF/NOTICE META-INF/*.RSA META-INF/*.SF module-info.class"/>
    34     </jar>
    35     <delete file="${basedir}/dependencies.jar"/>
    3622  </target>
    3723</project>
Note: See TracChangeset for help on using the changeset viewer.