|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project name="org.springframework.core" xmlns:ivy="antlib:org.apache.ivy.ant">
|
|
|
|
<property file="${basedir}/../build.properties"/>
|
|
|
|
<property file="${basedir}/../build.versions"/>
|
|
|
|
<import file="${basedir}/../build-spring-framework/package-bundle.xml"/>
|
|
|
|
<import file="${basedir}/../spring-build/standard/default.xml"/>
|
|
|
|
<target name="create.pom" depends="ivy.init, resolve">
|
|
|
|
<delete quiet="true" file="${pom.output.file}"/>
|
|
|
|
<mkdir dir="${pom.output.dir}"/>
|
|
|
|
<!--
|
|
|
|
This overrides the default so that commons-logging can be made mandatory in one place: SPR-5327.
|
|
|
|
Actually it's not working: commons-logging comes out as optional whatever you do here or in ivy.xml.
|
|
|
|
Oh well.
|
|
|
|
-->
|
|
|
|
<ivy:makepom ivyfile="${ivy.output.file}" pomfile="${pom.output.file}">
|
|
|
|
<mapping conf="compile" scope="compile"/>
|
|
|
|
<mapping conf="commons-logging" scope="compile"/>
|
|
|
|
<mapping conf="provided" scope="provided"/>
|
|
|
|
<mapping conf="dm-server-provided" scope="provided"/>
|
|
|
|
<mapping conf="runtime" scope="runtime"/>
|
|
|
|
<mapping conf="test" scope="test"/>
|
|
|
|
</ivy:makepom>
|
|
|
|
</target>
|
|
|
|
</project>
|
|
|
|
|