1<?xml version="1.0" encoding="UTF-8"?>
2<?xml-stylesheet type="text/xsl" href="http://ivyrep.jayasoft.org/ivy-doc.xsl"?>
3<ivy-module
4		xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5		xsi:noNamespaceSchemaLocation="http://incubator.apache.org/ivy/schemas/ivy.xsd"
6		version="1.3">
7
8	<info organisation="org.springframework" module="${ant.project.name}">
9		<license name="Apache 2.0" url="http://www.apache.org/licenses/LICENSE-2.0"/>
10	</info>
11
12	<configurations>
13		<include file="${spring.build.dir}/common/default-ivy-configurations.xml"/>
14		<conf name="commons-logging" extends="runtime" description="JARs needed to run with Commons Logging"/>
15		<conf name="c3p0" extends="runtime" description="JARs needed to run with c3p0"/>
16		<conf name="jndi" extends="runtime" description="JARs needed to use JNDI"/>
17		<conf name="pooling" extends="runtime" description="JARs needed to run with an XA pool"/>
18		<conf name="rowset" extends="runtime" description="JARs needed to use JDBC rowsets"/>
19	</configurations>
20
21	<publications>
22		<artifact name="${ant.project.name}"/>
23		<artifact name="${ant.project.name}-sources" type="src" ext="jar"/>
24		<artifact name="license" type="license" ext="txt"/>
25		<artifact name="notice" type="notice" ext="txt"/>
26	</publications>
27
28	<dependencies>
29		<dependency org="com.mchange.c3p0" name="com.springsource.com.mchange.v2.c3p0" rev="0.9.1.2" conf="optional, c3p0->compile"/>
30		<dependency org="javax.transaction" name="com.springsource.javax.transaction" rev="1.1.0" conf="provided->runtime"/>
31		<dependency org="org.apache.commons" name="com.springsource.org.apache.commons.logging" rev="1.1.1" conf="compile, commons-logging->compile"/>
32		<dependency org="org.springframework" name="org.springframework.beans" rev="latest.integration" conf="compile->compile"/>
33		<dependency org="org.springframework" name="org.springframework.context" rev="latest.integration" conf="optional, jndi->compile"/>
34		<dependency org="org.springframework" name="org.springframework.core" rev="latest.integration" conf="compile->compile"/>
35		<dependency org="org.springframework" name="org.springframework.transaction" rev="latest.integration" conf="compile->compile"/>
36		<dependency org="org.hsqldb" name="com.springsource.org.hsqldb" rev="1.8.0.9" conf="optional->compile"/>
37		<dependency org="com.h2database" name="com.springsource.org.h2" rev="1.0.71" conf="optional->compile"/>
38		<dependency org="org.apache.derby" name="com.springsource.org.apache.derby" rev="10.5.1000001.764942" conf="optional->compile"/>
39		<!-- test dependencies -->
40		<dependency org="org.junit" name="com.springsource.org.junit" rev="${junit.version}" conf="test->runtime"/>
41		<dependency org="org.easymock" name="com.springsource.org.easymock" rev="2.5.1" conf="test->compile"/>
42	</dependencies>
43
44</ivy-module>
45