spring-build was previously included via an svn:external. Adding directly to the source tree under Git to avoid the need for a git submodule. In order to build from any earlier commit, it is recommended to export spring-build or symlink an existing copy into the root of the spring-framework project and then build normally. $ svn export https://src.springsource.org/svn/spring-build/tags/project-build-2.2.3 spring-build
30 lines
889 B
XML
30 lines
889 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project name="artifact-resource" xmlns:ivy="antlib:org.apache.ivy.ant">
|
|
|
|
<import file="common.xml"/>
|
|
|
|
<!-- Main targets -->
|
|
<target name="javadoc-all" description="Does nothing"/>
|
|
|
|
<target name="javadoc-api" description="Does nothing."/>
|
|
|
|
<target name="jar" depends="ivy.init, resolve.compile"
|
|
description="Creates a libd file with the proper versions substituted.">
|
|
<delete quiet="true" file="${ivy.output.file}"/>
|
|
<mkdir dir="${ivy.output.dir}"/>
|
|
|
|
<copy toDir="${artifacts.dir}">
|
|
<fileset dir="${resource.src.dir}"/>
|
|
</copy>
|
|
|
|
<ivy:publish resolver="integration" pubdate="${timestamp}" status="${release.type}">
|
|
<artifacts pattern="${ivy.output.dir}/[artifact].[ext]"/>
|
|
<artifacts pattern="${artifacts.dir}/[artifact].[ext]"/>
|
|
</ivy:publish>
|
|
</target>
|
|
|
|
<!-- Other targets -->
|
|
<target name="javadoc.prep"/>
|
|
|
|
</project>
|