Browse Source
Cleanup remains to meet maven central metadata requirements git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@816 50f2f4bb-b051-0410-bef5-90022cba6387pull/1/head
16 changed files with 2038 additions and 583 deletions
@ -0,0 +1,137 @@
@@ -0,0 +1,137 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<project name="generate-poms" xmlns:ivy="antlib:org.apache.ivy.ant"> |
||||
|
||||
<property file="${basedir}/../build.properties"/> |
||||
<import file="${basedir}/../spring-build/multi-bundle/default.xml"/> |
||||
|
||||
|
||||
<path id="modules-to-process"> |
||||
<!-- |
||||
<pathelement location="../org.springframework.instrument"/> |
||||
<pathelement location="../org.springframework.instrument.classloading"/> |
||||
<pathelement location="../org.springframework.asm"/> |
||||
<pathelement location="../org.springframework.core"/> |
||||
<pathelement location="../org.springframework.expression"/> |
||||
<pathelement location="../org.springframework.beans"/> |
||||
<pathelement location="../org.springframework.aop"/> |
||||
<pathelement location="../org.springframework.context"/> |
||||
<pathelement location="../org.springframework.transaction"/> |
||||
<pathelement location="../org.springframework.oxm"/> |
||||
<pathelement location="../org.springframework.jms"/> |
||||
<pathelement location="../org.springframework.aspects"/> |
||||
<pathelement location="../org.springframework.jdbc"/> |
||||
<pathelement location="../org.springframework.web"/> |
||||
<pathelement location="../org.springframework.orm"/> |
||||
<pathelement location="../org.springframework.context.support"/> |
||||
<pathelement location="../org.springframework.web.servlet"/> |
||||
<pathelement location="../org.springframework.web.portlet"/> |
||||
<pathelement location="../org.springframework.test"/> |
||||
--> |
||||
|
||||
<!-- |
||||
|
||||
<pathelement location="../org.springframework.integration-tests"/> |
||||
--> |
||||
</path> |
||||
|
||||
<condition property="maven.extension" value=".bat" else=""> |
||||
<os family="windows"/> |
||||
</condition> |
||||
<property name="mvn.exe" value="mvn${maven.extension}"/> |
||||
|
||||
|
||||
<target name="test"> |
||||
<echo message="pom version = ${project.version}"/> |
||||
</target> |
||||
|
||||
<target name="generate-pom" depends="ivy.init"> |
||||
<all-bundles target="do-generate-pom" buildpathRef="modules-to-process"/> |
||||
</target> |
||||
|
||||
<target name="generate-pom-test"> |
||||
<all-bundles target="do-generate-pom-test" buildpathRef="modules-to-process"/> |
||||
</target> |
||||
|
||||
|
||||
<target name="do-generate-pom" depends="ivy.init"> |
||||
|
||||
|
||||
<delete file="pom.xml" quiet="true"/> |
||||
<delete file="pom-central.xml" quiet="true"/> |
||||
|
||||
<ivy:makepom ivyfile="ivy.xml" pomfile="pom.xml"> |
||||
<mapping conf="compile" scope="compile"/> |
||||
<mapping conf="test" scope="test"/> |
||||
<mapping conf="provided" scope="provided"/> |
||||
<mapping conf="runtime" scope="runtime"/> |
||||
</ivy:makepom> |
||||
|
||||
<xmlproperty file="../build-spring-framework/pom.xml"/> |
||||
|
||||
<replaceregexp file="pom.xml" |
||||
match="<version>.*?</version>" |
||||
replace="<version>@project-version@</version>" /> |
||||
|
||||
|
||||
<exec executable="${mvn.exe}" failonerror="true"> |
||||
<arg line="org.springframework.build.repository:org.springframework.build.repository.maven:create-central"/> |
||||
</exec> |
||||
|
||||
<move file="pom.xml" tofile="pom-bundle.xml"/> |
||||
<move file="central-pom.xml" tofile="pom.xml"/> |
||||
|
||||
<replace file="pom.xml"> |
||||
<replacetoken><![CDATA[ <version>@project-version@</version>]]></replacetoken> |
||||
<replacevalue><![CDATA[ <version>@project-version@</version> |
||||
<parent> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.parent</artifactId> |
||||
<relativePath>../build-spring-framework</relativePath> |
||||
<version>@project-version@</version> |
||||
</parent> |
||||
]]></replacevalue> |
||||
</replace> |
||||
|
||||
<replace file="pom.xml" token="@project-version@" value="${project.version}"/> |
||||
<replace file="pom.xml" token="latest.integration" value="${project.version}"/> |
||||
|
||||
|
||||
<fixcrlf srcDir="." |
||||
eol="lf" |
||||
eof="remove" |
||||
includes="pom.xml"/> |
||||
|
||||
</target> |
||||
|
||||
<target name="remove-unresolved-references"> |
||||
<!-- TODO in spring-context these are only found in S2 bundle repo, not maven central --> |
||||
|
||||
<replace file="pom.xml"> |
||||
<replacetoken><![CDATA[<dependency> |
||||
<groupId>com.oracle.oc4j</groupId> |
||||
<artifactId>oracle.classloader</artifactId> |
||||
<version>10.1.3.1</version> |
||||
<scope>provided</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>com.sun.enterprise</groupId> |
||||
<artifactId>com.sun.enterprise.loader</artifactId> |
||||
<version>1.0</version> |
||||
<scope>provided</scope> |
||||
</dependency> |
||||
]]></replacetoken> |
||||
<replacevalue><![CDATA[]]></replacevalue> |
||||
</replace> |
||||
|
||||
|
||||
</target> |
||||
|
||||
<target name="do-generate-pom-test"> |
||||
<exec executable="${mvn.exe}" failonerror="true"> |
||||
<env key="MAVEN_TERMINATE_CMD" value="on" /> |
||||
<arg line="-P stage,fast install"/> |
||||
</exec> |
||||
</target> |
||||
|
||||
|
||||
</project> |
||||
@ -0,0 +1,42 @@
@@ -0,0 +1,42 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-asm</artifactId> |
||||
<packaging>jar</packaging> |
||||
<version>3.0.0.M3</version> |
||||
<parent> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.parent</artifactId> |
||||
<relativePath>../build-spring-framework</relativePath> |
||||
<version>3.0.0.M3</version> |
||||
</parent> |
||||
|
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>asm</groupId> |
||||
<artifactId>asm</artifactId> |
||||
<version>2.2.3</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>asm</groupId> |
||||
<artifactId>asm-commons</artifactId> |
||||
<version>2.2.3</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
</dependencies> |
||||
<build> |
||||
<pluginManagement> |
||||
<plugins> |
||||
<plugin> |
||||
<groupId>org.apache.maven.plugins</groupId> |
||||
<artifactId>maven-surefire-plugin</artifactId> |
||||
<configuration> |
||||
<junitArtifactName>junit:junit</junitArtifactName> |
||||
</configuration> |
||||
</plugin> |
||||
</plugins> |
||||
</pluginManagement> |
||||
</build> |
||||
</project> |
||||
@ -1,59 +1,54 @@
@@ -1,59 +1,54 @@
|
||||
<?xml version="1.0"?> |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.core</artifactId> |
||||
<packaging>jar</packaging> |
||||
<name>Spring Core Abstractions and Utilities</name> |
||||
<version>3.0.0.M1</version> |
||||
<repositories> |
||||
<repository> |
||||
<id>com.springsource.repository.bundles.external</id> |
||||
<name>SpringSource Enterprise Bundle Repository - External Bundle Releases</name> |
||||
<url>http://repository.springsource.com/maven/bundles/external</url> |
||||
</repository> |
||||
</repositories> |
||||
<build> |
||||
<plugins> |
||||
<plugin> |
||||
<groupId>org.apache.maven.plugins</groupId> |
||||
<artifactId>maven-compiler-plugin</artifactId> |
||||
<configuration> |
||||
<source>1.5</source> |
||||
<target>1.5</target> |
||||
</configuration> |
||||
</plugin> |
||||
</plugins> |
||||
</build> |
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>org.apache.commons</groupId> |
||||
<artifactId>com.springsource.org.apache.commons.logging</artifactId> |
||||
<version>1.1.1</version> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.log4j</groupId> |
||||
<artifactId>com.springsource.org.apache.log4j</artifactId> |
||||
<version>1.2.15</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.commons</groupId> |
||||
<artifactId>com.springsource.org.apache.commons.collections</artifactId> |
||||
<version>3.2.0</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.aspectj</groupId> |
||||
<artifactId>com.springsource.org.aspectj.weaver</artifactId> |
||||
<version>1.6.2.RELEASE</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.objectweb.asm</groupId> |
||||
<artifactId>com.springsource.org.objectweb.asm.commons</artifactId> |
||||
<version>2.2.3</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
</dependencies> |
||||
</project> |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-aspects</artifactId> |
||||
<packaging>jar</packaging> |
||||
<version>3.0.0.M3</version> |
||||
<parent> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.parent</artifactId> |
||||
<relativePath>../build-spring-framework</relativePath> |
||||
<version>3.0.0.M3</version> |
||||
</parent> |
||||
|
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>commons-logging</groupId> |
||||
<artifactId>commons-logging</artifactId> |
||||
<version>1.1.1</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.aspectj</groupId> |
||||
<artifactId>aspectjweaver</artifactId> |
||||
<version>1.6.2</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-beans</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-tx</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
</dependencies> |
||||
<build> |
||||
<pluginManagement> |
||||
<plugins> |
||||
<plugin> |
||||
<groupId>org.apache.maven.plugins</groupId> |
||||
<artifactId>maven-surefire-plugin</artifactId> |
||||
<configuration> |
||||
<junitArtifactName>junit:junit</junitArtifactName> |
||||
</configuration> |
||||
</plugin> |
||||
</plugins> |
||||
</pluginManagement> |
||||
</build> |
||||
</project> |
||||
|
||||
@ -1,59 +1,485 @@
@@ -1,59 +1,485 @@
|
||||
<?xml version="1.0"?> |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.core</artifactId> |
||||
<packaging>jar</packaging> |
||||
<name>Spring Core Abstractions and Utilities</name> |
||||
<version>3.0.0.M1</version> |
||||
<repositories> |
||||
<repository> |
||||
<id>com.springsource.repository.bundles.external</id> |
||||
<name>SpringSource Enterprise Bundle Repository - External Bundle Releases</name> |
||||
<url>http://repository.springsource.com/maven/bundles/external</url> |
||||
</repository> |
||||
</repositories> |
||||
<build> |
||||
<plugins> |
||||
<plugin> |
||||
<groupId>org.apache.maven.plugins</groupId> |
||||
<artifactId>maven-compiler-plugin</artifactId> |
||||
<configuration> |
||||
<source>1.5</source> |
||||
<target>1.5</target> |
||||
</configuration> |
||||
</plugin> |
||||
</plugins> |
||||
</build> |
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>org.apache.commons</groupId> |
||||
<artifactId>com.springsource.org.apache.commons.logging</artifactId> |
||||
<version>1.1.1</version> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.log4j</groupId> |
||||
<artifactId>com.springsource.org.apache.log4j</artifactId> |
||||
<version>1.2.15</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.commons</groupId> |
||||
<artifactId>com.springsource.org.apache.commons.collections</artifactId> |
||||
<version>3.2.0</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.aspectj</groupId> |
||||
<artifactId>com.springsource.org.aspectj.weaver</artifactId> |
||||
<version>1.6.2.RELEASE</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.objectweb.asm</groupId> |
||||
<artifactId>com.springsource.org.objectweb.asm.commons</artifactId> |
||||
<version>2.2.3</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
</dependencies> |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-integration-tests</artifactId> |
||||
<packaging>jar</packaging> |
||||
<version>3.0.0.M3</version> |
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>com.caucho</groupId> |
||||
<artifactId>com.caucho</artifactId> |
||||
<version>3.1.5</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>com.ibm.websphere</groupId> |
||||
<artifactId>com.ibm.websphere.uow</artifactId> |
||||
<version>6.0.2.17</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>com.opensymphony.quartz</groupId> |
||||
<artifactId>org.quartz</artifactId> |
||||
<version>1.6.2</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>com.oracle.oc4j</groupId> |
||||
<artifactId>oracle.classloader</artifactId> |
||||
<version>10.1.3.1</version> |
||||
<scope>provided</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>com.oracle.toplink.essentials</groupId> |
||||
<artifactId>oracle.toplink.essentials</artifactId> |
||||
<version>2.0.0.b41-beta2</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>com.sun.enterprise</groupId> |
||||
<artifactId>com.sun.enterprise.loader</artifactId> |
||||
<version>1.0</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>com.sun.syndication</groupId> |
||||
<artifactId>com.sun.syndication</artifactId> |
||||
<version>0.9</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>edu.emory.mathcs.backport</groupId> |
||||
<artifactId>edu.emory.mathcs.backport</artifactId> |
||||
<version>3.0</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.ejb</groupId> |
||||
<artifactId>javax.ejb</artifactId> |
||||
<version>3.0</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.el</groupId> |
||||
<artifactId>javax.el</artifactId> |
||||
<version>2.1</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.faces</groupId> |
||||
<artifactId>javax.faces</artifactId> |
||||
<version>1.2.0.08</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.jdo</groupId> |
||||
<artifactId>javax.jdo</artifactId> |
||||
<version>2.1</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.geronimo.specs</groupId> |
||||
<artifactId>geronimo-jms_1.1_spec</artifactId> |
||||
<version>1.1</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.mail</groupId> |
||||
<artifactId>javax.mail</artifactId> |
||||
<version>1.4</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.portlet</groupId> |
||||
<artifactId>javax.portlet</artifactId> |
||||
<version>2.0</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.resource</groupId> |
||||
<artifactId>javax.resource</artifactId> |
||||
<version>1.5</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.servlet</groupId> |
||||
<artifactId>servlet-api</artifactId> |
||||
<version>2.5</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.servlet</groupId> |
||||
<artifactId>javax.servlet.jsp</artifactId> |
||||
<version>2.1</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.servlet</groupId> |
||||
<artifactId>jstl</artifactId> |
||||
<version>1.1.2</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.geronimo.specs</groupId> |
||||
<artifactId>geronimo-jta_1.1_spec</artifactId> |
||||
<version>1.1</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.xml.rpc</groupId> |
||||
<artifactId>javax.xml.rpc</artifactId> |
||||
<version>1.1</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>cglib</groupId> |
||||
<artifactId>cglib-nodep</artifactId> |
||||
<version>2.1_3</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>net.sourceforge.ehcache</groupId> |
||||
<artifactId>net.sf.ehcache</artifactId> |
||||
<version>1.3</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>net.sourceforge.jasperreports</groupId> |
||||
<artifactId>net.sf.jasperreports</artifactId> |
||||
<version>2.0.5</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>net.sourceforge.jexcelapi</groupId> |
||||
<artifactId>jxl</artifactId> |
||||
<version>2.6.6</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.antlr</groupId> |
||||
<artifactId>antlr</artifactId> |
||||
<version>2.7.6</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>commons-dbcp</groupId> |
||||
<artifactId>commons-dbcp</artifactId> |
||||
<version>1.2.2</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>commons-fileupload</groupId> |
||||
<artifactId>commons-fileupload</artifactId> |
||||
<version>1.2</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>commons-pool</groupId> |
||||
<artifactId>commons-pool</artifactId> |
||||
<version>1.4</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.ibatis</groupId> |
||||
<artifactId>ibatis-sqlmap</artifactId> |
||||
<version>2.3.4.726</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.openjpa</groupId> |
||||
<artifactId>org.apache.openjpa</artifactId> |
||||
<version>1.0.2</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.openjpa</groupId> |
||||
<artifactId>org.apache.openjpa.java5</artifactId> |
||||
<version>1.0.2</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.openjpa</groupId> |
||||
<artifactId>org.apache.openjpa.jdbc.java5</artifactId> |
||||
<version>1.0.2</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.openjpa</groupId> |
||||
<artifactId>org.apache.openjpa.lib</artifactId> |
||||
<version>1.0.2</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.openjpa</groupId> |
||||
<artifactId>org.apache.openjpa.lib.java5</artifactId> |
||||
<version>1.0.2</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.openjpa</groupId> |
||||
<artifactId>org.apache.openjpa.persistence</artifactId> |
||||
<version>1.0.2</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.openjpa</groupId> |
||||
<artifactId>org.apache.openjpa.persistence.jdbc</artifactId> |
||||
<version>1.0.2</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.poi</groupId> |
||||
<artifactId>org.apache.poi</artifactId> |
||||
<version>3.0.2.FINAL</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.tiles</groupId> |
||||
<artifactId>org.apache.tiles</artifactId> |
||||
<version>2.0.5</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.tiles</groupId> |
||||
<artifactId>tiles-core</artifactId> |
||||
<version>2.0.5</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.tiles</groupId> |
||||
<artifactId>tiles-jsp</artifactId> |
||||
<version>2.0.5</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.velocity</groupId> |
||||
<artifactId>org.apache.velocity</artifactId> |
||||
<version>1.5</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.velocity</groupId> |
||||
<artifactId>org.apache.velocity.tools.view</artifactId> |
||||
<version>1.4</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.aspectj</groupId> |
||||
<artifactId>aspectjweaver</artifactId> |
||||
<version>1.6.2.RELEASE</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.codehaus.groovy</groupId> |
||||
<artifactId>org.codehaus.groovy</artifactId> |
||||
<version>1.5.1</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.dom4j</groupId> |
||||
<artifactId>org.dom4j</artifactId> |
||||
<version>1.6.1</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.easymock</groupId> |
||||
<artifactId>easymock</artifactId> |
||||
<version>2.3</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.easymock</groupId> |
||||
<artifactId>org.easymock.classextension</artifactId> |
||||
<version>2.3</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.eclipse.persistence</groupId> |
||||
<artifactId>org.eclipse.persistence</artifactId> |
||||
<version>1.0.1</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.eclipse.persistence</groupId> |
||||
<artifactId>org.eclipse.persistence.jpa</artifactId> |
||||
<version>1.0.1</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.freemarker</groupId> |
||||
<artifactId>freemarker</artifactId> |
||||
<version>2.3.12</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.hibernate</groupId> |
||||
<artifactId>hibernate</artifactId> |
||||
<version>3.2.6.ga</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.hibernate</groupId> |
||||
<artifactId>hibernate-annotations</artifactId> |
||||
<version>3.3.0.ga</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.hibernate</groupId> |
||||
<artifactId>org.hibernate.annotations.common</artifactId> |
||||
<version>3.3.0.ga</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.hibernate</groupId> |
||||
<artifactId>hibernate-entitymanager</artifactId> |
||||
<version>3.3.1.GA</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>hsqldb</groupId> |
||||
<artifactId>hsqldb</artifactId> |
||||
<version>1.8.0.7</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.jruby</groupId> |
||||
<artifactId>org.jruby</artifactId> |
||||
<version>1.1</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>asm</groupId> |
||||
<artifactId>asm</artifactId> |
||||
<version>2.2.3</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>asm</groupId> |
||||
<artifactId>asm-commons</artifactId> |
||||
<version>2.2.3</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-aop</artifactId> |
||||
<version>latest.integration</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-beans</artifactId> |
||||
<version>latest.integration</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-context</artifactId> |
||||
<version>latest.integration</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-context-support</artifactId> |
||||
<version>latest.integration</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-core</artifactId> |
||||
<version>latest.integration</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-jdbc</artifactId> |
||||
<version>latest.integration</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-jms</artifactId> |
||||
<version>latest.integration</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-orm</artifactId> |
||||
<version>latest.integration</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-test</artifactId> |
||||
<version>latest.integration</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-tx</artifactId> |
||||
<version>latest.integration</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-web</artifactId> |
||||
<version>latest.integration</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-web-portlet</artifactId> |
||||
<version>latest.integration</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-webmvc</artifactId> |
||||
<version>latest.integration</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>log4j</groupId> |
||||
<artifactId>log4j</artifactId> |
||||
<version>1.2.14</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>xmlunit</groupId> |
||||
<artifactId>xmlunit</artifactId> |
||||
<version>1.2</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.easymock</groupId> |
||||
<artifactId>easymock</artifactId> |
||||
<version>2.3</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>junit</groupId> |
||||
<artifactId>junit</artifactId> |
||||
<version>4.5</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.testng</groupId> |
||||
<artifactId>org.testng</artifactId> |
||||
<version>5.8</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
</dependencies> |
||||
<build> |
||||
<pluginManagement> |
||||
<plugins> |
||||
<plugin> |
||||
<groupId>org.apache.maven.plugins</groupId> |
||||
<artifactId>maven-surefire-plugin</artifactId> |
||||
<configuration> |
||||
<junitArtifactName>junit:junit</junitArtifactName> |
||||
</configuration> |
||||
</plugin> |
||||
</plugins> |
||||
</pluginManagement> |
||||
</build> |
||||
</project> |
||||
@ -1,59 +1,90 @@
@@ -1,59 +1,90 @@
|
||||
<?xml version="1.0"?> |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.core</artifactId> |
||||
<packaging>jar</packaging> |
||||
<name>Spring Core Abstractions and Utilities</name> |
||||
<version>3.0.0.M1</version> |
||||
<repositories> |
||||
<repository> |
||||
<id>com.springsource.repository.bundles.external</id> |
||||
<name>SpringSource Enterprise Bundle Repository - External Bundle Releases</name> |
||||
<url>http://repository.springsource.com/maven/bundles/external</url> |
||||
</repository> |
||||
</repositories> |
||||
<build> |
||||
<plugins> |
||||
<plugin> |
||||
<groupId>org.apache.maven.plugins</groupId> |
||||
<artifactId>maven-compiler-plugin</artifactId> |
||||
<configuration> |
||||
<source>1.5</source> |
||||
<target>1.5</target> |
||||
</configuration> |
||||
</plugin> |
||||
</plugins> |
||||
</build> |
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>org.apache.commons</groupId> |
||||
<artifactId>com.springsource.org.apache.commons.logging</artifactId> |
||||
<version>1.1.1</version> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.log4j</groupId> |
||||
<artifactId>com.springsource.org.apache.log4j</artifactId> |
||||
<version>1.2.15</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.commons</groupId> |
||||
<artifactId>com.springsource.org.apache.commons.collections</artifactId> |
||||
<version>3.2.0</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.aspectj</groupId> |
||||
<artifactId>com.springsource.org.aspectj.weaver</artifactId> |
||||
<version>1.6.2.RELEASE</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.objectweb.asm</groupId> |
||||
<artifactId>com.springsource.org.objectweb.asm.commons</artifactId> |
||||
<version>2.2.3</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
</dependencies> |
||||
</project> |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-jdbc</artifactId> |
||||
<packaging>jar</packaging> |
||||
<version>3.0.0.M3</version> |
||||
<parent> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.parent</artifactId> |
||||
<relativePath>../build-spring-framework</relativePath> |
||||
<version>3.0.0.M3</version> |
||||
</parent> |
||||
|
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>c3p0</groupId> |
||||
<artifactId>c3p0</artifactId> |
||||
<version>0.9.1.2</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.geronimo.specs</groupId> |
||||
<artifactId>geronimo-jta_1.1_spec</artifactId> |
||||
<version>1.1</version> |
||||
<scope>provided</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>commons-logging</groupId> |
||||
<artifactId>commons-logging</artifactId> |
||||
<version>1.1.1</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-beans</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-context</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-core</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-tx</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>junit</groupId> |
||||
<artifactId>junit</artifactId> |
||||
<version>4.5</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.easymock</groupId> |
||||
<artifactId>easymock</artifactId> |
||||
<version>2.3</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>commons-collections</groupId> |
||||
<artifactId>commons-collections</artifactId> |
||||
<version>3.2</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
</dependencies> |
||||
<build> |
||||
<pluginManagement> |
||||
<plugins> |
||||
<plugin> |
||||
<groupId>org.apache.maven.plugins</groupId> |
||||
<artifactId>maven-surefire-plugin</artifactId> |
||||
<configuration> |
||||
<junitArtifactName>junit:junit</junitArtifactName> |
||||
</configuration> |
||||
</plugin> |
||||
</plugins> |
||||
</pluginManagement> |
||||
</build> |
||||
</project> |
||||
|
||||
@ -1,45 +1,114 @@
@@ -1,45 +1,114 @@
|
||||
<?xml version="1.0"?> |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
||||
<parent> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.parent</artifactId> |
||||
<version>3.0-M1-SNAPSHOT</version> |
||||
</parent> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<artifactId>org.springframework.jdbc</artifactId> |
||||
<packaging>jar</packaging> |
||||
<name>Spring Framework: JDBC</name> |
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.core</artifactId> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.beans</artifactId> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.context</artifactId> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.transaction</artifactId> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.transaction</groupId> |
||||
<artifactId>com.springsource.javax.transaction</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>com.mchange.c3p0</groupId> |
||||
<artifactId>com.springsource.com.mchange.v2.c3p0</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>com.experlog.xapool</groupId> |
||||
<artifactId>com.springsource.org.enhydra.jdbc</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
</dependencies> |
||||
</project> |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-jms</artifactId> |
||||
<packaging>jar</packaging> |
||||
<version>3.0.0.M3</version> |
||||
<parent> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.parent</artifactId> |
||||
<relativePath>../build-spring-framework</relativePath> |
||||
<version>3.0.0.M3</version> |
||||
</parent> |
||||
|
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>org.apache.geronimo.specs</groupId> |
||||
<artifactId>geronimo-jms_1.1_spec</artifactId> |
||||
<version>1.1</version> |
||||
<scope>provided</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.resource</groupId> |
||||
<artifactId>connector-api</artifactId> |
||||
<version>1.5</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.geronimo.specs</groupId> |
||||
<artifactId>geronimo-jta_1.1_spec</artifactId> |
||||
<version>1.1</version> |
||||
<scope>provided</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>aopalliance</groupId> |
||||
<artifactId>aopalliance</artifactId> |
||||
<version>1.0</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>commons-logging</groupId> |
||||
<artifactId>commons-logging</artifactId> |
||||
<version>1.1.1</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>commons-pool</groupId> |
||||
<artifactId>commons-pool</artifactId> |
||||
<version>1.3</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.easymock</groupId> |
||||
<artifactId>easymock</artifactId> |
||||
<version>2.3</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>junit</groupId> |
||||
<artifactId>junit</artifactId> |
||||
<version>4.5</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-aop</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-beans</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-context</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-core</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-oxm</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-tx</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
</dependencies> |
||||
<build> |
||||
<pluginManagement> |
||||
<plugins> |
||||
<plugin> |
||||
<groupId>org.apache.maven.plugins</groupId> |
||||
<artifactId>maven-surefire-plugin</artifactId> |
||||
<configuration> |
||||
<junitArtifactName>junit:junit</junitArtifactName> |
||||
</configuration> |
||||
</plugin> |
||||
</plugins> |
||||
</pluginManagement> |
||||
</build> |
||||
</project> |
||||
|
||||
@ -1,59 +1,200 @@
@@ -1,59 +1,200 @@
|
||||
<?xml version="1.0"?> |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.core</artifactId> |
||||
<packaging>jar</packaging> |
||||
<name>Spring Core Abstractions and Utilities</name> |
||||
<version>3.0.0.M1</version> |
||||
<repositories> |
||||
<repository> |
||||
<id>com.springsource.repository.bundles.external</id> |
||||
<name>SpringSource Enterprise Bundle Repository - External Bundle Releases</name> |
||||
<url>http://repository.springsource.com/maven/bundles/external</url> |
||||
</repository> |
||||
</repositories> |
||||
<build> |
||||
<plugins> |
||||
<plugin> |
||||
<groupId>org.apache.maven.plugins</groupId> |
||||
<artifactId>maven-compiler-plugin</artifactId> |
||||
<configuration> |
||||
<source>1.5</source> |
||||
<target>1.5</target> |
||||
</configuration> |
||||
</plugin> |
||||
</plugins> |
||||
</build> |
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>org.apache.commons</groupId> |
||||
<artifactId>com.springsource.org.apache.commons.logging</artifactId> |
||||
<version>1.1.1</version> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.log4j</groupId> |
||||
<artifactId>com.springsource.org.apache.log4j</artifactId> |
||||
<version>1.2.15</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.commons</groupId> |
||||
<artifactId>com.springsource.org.apache.commons.collections</artifactId> |
||||
<version>3.2.0</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.aspectj</groupId> |
||||
<artifactId>com.springsource.org.aspectj.weaver</artifactId> |
||||
<version>1.6.2.RELEASE</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.objectweb.asm</groupId> |
||||
<artifactId>com.springsource.org.objectweb.asm.commons</artifactId> |
||||
<version>2.2.3</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
</dependencies> |
||||
</project> |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-orm</artifactId> |
||||
<packaging>jar</packaging> |
||||
<version>3.0.0.M3</version> |
||||
<parent> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.parent</artifactId> |
||||
<relativePath>../build-spring-framework</relativePath> |
||||
<version>3.0.0.M3</version> |
||||
</parent> |
||||
|
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>toplink.essentials</groupId> |
||||
<artifactId>toplink-essentials</artifactId> |
||||
<version>2.0-41</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>aopalliance</groupId> |
||||
<artifactId>aopalliance</artifactId> |
||||
<version>1.0</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>commons-logging</groupId> |
||||
<artifactId>commons-logging</artifactId> |
||||
<version>1.1.1</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.ibatis</groupId> |
||||
<artifactId>ibatis-sqlmap</artifactId> |
||||
<version>2.3.4.726</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.openjpa</groupId> |
||||
<artifactId>openjpa</artifactId> |
||||
<version>1.1.0</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<!-- |
||||
<dependency> |
||||
<groupId>org.eclipse.persistence</groupId> |
||||
<artifactId>org.eclipse.persistence</artifactId> |
||||
<version>1.0.1</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.eclipse.persistence</groupId> |
||||
<artifactId>org.eclipse.persistence.jpa</artifactId> |
||||
<version>1.0.1</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
--> |
||||
<dependency> |
||||
<groupId>org.hibernate</groupId> |
||||
<artifactId>hibernate</artifactId> |
||||
<version>3.2.6.ga</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.hibernate</groupId> |
||||
<artifactId>hibernate-annotations</artifactId> |
||||
<version>3.4.0.GA</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.hibernate</groupId> |
||||
<artifactId>hibernate-entitymanager</artifactId> |
||||
<version>3.4.0.GA</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.jdo</groupId> |
||||
<artifactId>jdo2-api</artifactId> |
||||
<version>2.1</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.persistence</groupId> |
||||
<artifactId>persistence-api</artifactId> |
||||
<version>1.0</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.servlet</groupId> |
||||
<artifactId>servlet-api</artifactId> |
||||
<version>2.5</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.geronimo.specs</groupId> |
||||
<artifactId>geronimo-jta_1.1_spec</artifactId> |
||||
<version>1.1</version> |
||||
<scope>provided</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-aop</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-beans</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-context</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-core</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-instrument-classloading</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-jdbc</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-tx</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-web</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.aspectj</groupId> |
||||
<artifactId>aspectjweaver</artifactId> |
||||
<version>1.6.2</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>commons-dbcp</groupId> |
||||
<artifactId>commons-dbcp</artifactId> |
||||
<version>1.2.2</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.easymock</groupId> |
||||
<artifactId>easymock</artifactId> |
||||
<version>2.3</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>hsqldb</groupId> |
||||
<artifactId>hsqldb</artifactId> |
||||
<version>1.8.0.7</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>junit</groupId> |
||||
<artifactId>junit</artifactId> |
||||
<version>4.5</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.slf4j</groupId> |
||||
<artifactId>slf4j-jcl</artifactId> |
||||
<version>1.5.3</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
</dependencies> |
||||
<build> |
||||
<pluginManagement> |
||||
<plugins> |
||||
<plugin> |
||||
<groupId>org.apache.maven.plugins</groupId> |
||||
<artifactId>maven-surefire-plugin</artifactId> |
||||
<configuration> |
||||
<junitArtifactName>junit:junit</junitArtifactName> |
||||
</configuration> |
||||
</plugin> |
||||
</plugins> |
||||
</pluginManagement> |
||||
</build> |
||||
</project> |
||||
|
||||
@ -0,0 +1,120 @@
@@ -0,0 +1,120 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-oxm</artifactId> |
||||
<packaging>jar</packaging> |
||||
<version>3.0.0.M3</version> |
||||
<parent> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.parent</artifactId> |
||||
<relativePath>../build-spring-framework</relativePath> |
||||
<version>3.0.0.M3</version> |
||||
</parent> |
||||
|
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>com.thoughtworks.xstream</groupId> |
||||
<artifactId>xstream</artifactId> |
||||
<version>1.3</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>com.sun.xml.bind</groupId> |
||||
<artifactId>jaxb-impl</artifactId> |
||||
<version>2.1.7</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.jibx</groupId> |
||||
<artifactId>jibx-run</artifactId> |
||||
<version>1.1.5</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>commons-logging</groupId> |
||||
<artifactId>commons-logging</artifactId> |
||||
<version>1.1.1</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>xerces</groupId> |
||||
<artifactId>xercesImpl</artifactId> |
||||
<version>2.8.1</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.xmlbeans</groupId> |
||||
<artifactId>xmlbeans</artifactId> |
||||
<version>2.4.0</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.codehaus.castor</groupId> |
||||
<artifactId>castor</artifactId> |
||||
<version>1.2</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-beans</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-context</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-core</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>junit</groupId> |
||||
<artifactId>junit</artifactId> |
||||
<version>4.5</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.easymock</groupId> |
||||
<artifactId>easymock</artifactId> |
||||
<version>2.3</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.codehaus.jettison</groupId> |
||||
<artifactId>jettison</artifactId> |
||||
<version>1.0.1</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>xmlunit</groupId> |
||||
<artifactId>xmlunit</artifactId> |
||||
<version>1.2</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>xmlpull</groupId> |
||||
<artifactId>xmlpull</artifactId> |
||||
<version>1.1.3.4a</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
</dependencies> |
||||
<build> |
||||
<pluginManagement> |
||||
<plugins> |
||||
<plugin> |
||||
<groupId>org.apache.maven.plugins</groupId> |
||||
<artifactId>maven-surefire-plugin</artifactId> |
||||
<configuration> |
||||
<junitArtifactName>junit:junit</junitArtifactName> |
||||
</configuration> |
||||
</plugin> |
||||
</plugins> |
||||
</pluginManagement> |
||||
</build> |
||||
</project> |
||||
@ -1,40 +1,169 @@
@@ -1,40 +1,169 @@
|
||||
<?xml version="1.0"?> |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
||||
<parent> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.parent</artifactId> |
||||
<version>3.0-M1-SNAPSHOT</version> |
||||
</parent> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<artifactId>org.springframework.core</artifactId> |
||||
<packaging>jar</packaging> |
||||
<name>Spring Framework: Core</name> |
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>org.apache.log4j</groupId> |
||||
<artifactId>com.springsource.org.apache.log4j</artifactId> |
||||
<scope>compile</scope> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.commons</groupId> |
||||
<artifactId>com.springsource.org.apache.commons.collections</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.aspectj</groupId> |
||||
<artifactId>com.springsource.org.aspectj.weaver</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.objectweb.asm</groupId> |
||||
<artifactId>com.springsource.org.objectweb.asm</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.objectweb.asm</groupId> |
||||
<artifactId>com.springsource.org.objectweb.asm.commons</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
</dependencies> |
||||
</project> |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-test</artifactId> |
||||
<packaging>jar</packaging> |
||||
<version>3.0.0.M3</version> |
||||
<parent> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.parent</artifactId> |
||||
<relativePath>../build-spring-framework</relativePath> |
||||
<version>3.0.0.M3</version> |
||||
</parent> |
||||
|
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>javax.activation</groupId> |
||||
<artifactId>activation</artifactId> |
||||
<version>1.1</version> |
||||
<scope>provided</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.el</groupId> |
||||
<artifactId>el-api</artifactId> |
||||
<version>1.0</version> |
||||
<scope>provided</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.persistence</groupId> |
||||
<artifactId>persistence-api</artifactId> |
||||
<version>1.0</version> |
||||
<scope>provided</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.portlet</groupId> |
||||
<artifactId>portlet-api</artifactId> |
||||
<version>2.0</version> |
||||
<scope>provided</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.servlet</groupId> |
||||
<artifactId>servlet-api</artifactId> |
||||
<version>2.5</version> |
||||
<scope>provided</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.servlet.jsp</groupId> |
||||
<artifactId>jsp-api</artifactId> |
||||
<version>2.1</version> |
||||
<scope>provided</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>junit</groupId> |
||||
<artifactId>junit</artifactId> |
||||
<version>3.8.2</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>junit</groupId> |
||||
<artifactId>junit</artifactId> |
||||
<version>4.5</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>commons-logging</groupId> |
||||
<artifactId>commons-logging</artifactId> |
||||
<version>1.1.1</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>taglibs</groupId> |
||||
<artifactId>standard</artifactId> |
||||
<version>1.1.2</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.aspectj</groupId> |
||||
<artifactId>aspectjweaver</artifactId> |
||||
<version>1.6.2</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.testng</groupId> |
||||
<artifactId>testng</artifactId> |
||||
<version>5.8</version> |
||||
<classifier>jdk15</classifier> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-beans</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-context</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-core</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-instrument-classloading</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-jdbc</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-orm</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-tx</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-web</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-web-portlet</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-webmvc</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>hsqldb</groupId> |
||||
<artifactId>hsqldb</artifactId> |
||||
<version>1.8.0.7</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
</dependencies> |
||||
<build> |
||||
<pluginManagement> |
||||
<plugins> |
||||
<plugin> |
||||
<groupId>org.apache.maven.plugins</groupId> |
||||
<artifactId>maven-surefire-plugin</artifactId> |
||||
<configuration> |
||||
<junitArtifactName>junit:junit</junitArtifactName> |
||||
</configuration> |
||||
</plugin> |
||||
</plugins> |
||||
</pluginManagement> |
||||
</build> |
||||
</project> |
||||
|
||||
@ -1,86 +1,120 @@
@@ -1,86 +1,120 @@
|
||||
<?xml version="1.0"?> |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
||||
<parent> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.parent</artifactId> |
||||
<version>3.0-M1-SNAPSHOT</version> |
||||
</parent> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<artifactId>org.springframework.web</artifactId> |
||||
<packaging>jar</packaging> |
||||
<name>Spring Framework: Web</name> |
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.core</artifactId> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.beans</artifactId> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.aop</artifactId> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.context</artifactId> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.servlet</groupId> |
||||
<artifactId>com.springsource.javax.servlet</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.el</groupId> |
||||
<artifactId>com.springsource.javax.el</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.servlet</groupId> |
||||
<artifactId>com.springsource.javax.servlet.jsp</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.xml.rpc</groupId> |
||||
<artifactId>com.springsource.javax.xml.rpc</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.aopalliance</groupId> |
||||
<artifactId>com.springsource.org.aopalliance</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.myfaces</groupId> |
||||
<artifactId>com.springsource.org.apache.myfaces.javax.faces</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>com.caucho</groupId> |
||||
<artifactId>com.springsource.com.caucho</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.log4j</groupId> |
||||
<artifactId>com.springsource.org.apache.log4j</artifactId> |
||||
<scope>compile</scope> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.commons</groupId> |
||||
<artifactId>com.springsource.org.apache.commons.httpclient</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.axis</groupId> |
||||
<artifactId>com.springsource.org.apache.axis</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.taglibs</groupId> |
||||
<artifactId>com.springsource.org.apache.taglibs.standard</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
</dependencies> |
||||
</project> |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-web-portlet</artifactId> |
||||
<packaging>jar</packaging> |
||||
<version>3.0.0.M3</version> |
||||
<parent> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.parent</artifactId> |
||||
<relativePath>../build-spring-framework</relativePath> |
||||
<version>3.0.0.M3</version> |
||||
</parent> |
||||
|
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>javax.el</groupId> |
||||
<artifactId>el-api</artifactId> |
||||
<version>1.0</version> |
||||
<scope>provided</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.portlet</groupId> |
||||
<artifactId>portlet-api</artifactId> |
||||
<version>2.0</version> |
||||
<scope>provided</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.servlet</groupId> |
||||
<artifactId>servlet-api</artifactId> |
||||
<version>2.5</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.servlet.jsp</groupId> |
||||
<artifactId>jsp-api</artifactId> |
||||
<version>2.1</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.servlet</groupId> |
||||
<artifactId>jstl</artifactId> |
||||
<version>1.1.2</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>commons-fileupload</groupId> |
||||
<artifactId>commons-fileupload</artifactId> |
||||
<version>1.2</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>commons-logging</groupId> |
||||
<artifactId>commons-logging</artifactId> |
||||
<version>1.1.1</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-beans</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-context</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-core</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-web</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-webmvc</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-asm</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.easymock</groupId> |
||||
<artifactId>easymock</artifactId> |
||||
<version>2.3</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>junit</groupId> |
||||
<artifactId>junit</artifactId> |
||||
<version>4.5</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
</dependencies> |
||||
<build> |
||||
<pluginManagement> |
||||
<plugins> |
||||
<plugin> |
||||
<groupId>org.apache.maven.plugins</groupId> |
||||
<artifactId>maven-surefire-plugin</artifactId> |
||||
<configuration> |
||||
<junitArtifactName>junit:junit</junitArtifactName> |
||||
</configuration> |
||||
</plugin> |
||||
</plugins> |
||||
</pluginManagement> |
||||
</build> |
||||
</project> |
||||
|
||||
@ -1,86 +1,210 @@
@@ -1,86 +1,210 @@
|
||||
<?xml version="1.0"?> |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
||||
<parent> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.parent</artifactId> |
||||
<version>3.0-M1-SNAPSHOT</version> |
||||
</parent> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<artifactId>org.springframework.web</artifactId> |
||||
<packaging>jar</packaging> |
||||
<name>Spring Framework: Web</name> |
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.core</artifactId> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.beans</artifactId> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.aop</artifactId> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.context</artifactId> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.servlet</groupId> |
||||
<artifactId>com.springsource.javax.servlet</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.el</groupId> |
||||
<artifactId>com.springsource.javax.el</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.servlet</groupId> |
||||
<artifactId>com.springsource.javax.servlet.jsp</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.xml.rpc</groupId> |
||||
<artifactId>com.springsource.javax.xml.rpc</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.aopalliance</groupId> |
||||
<artifactId>com.springsource.org.aopalliance</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.myfaces</groupId> |
||||
<artifactId>com.springsource.org.apache.myfaces.javax.faces</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>com.caucho</groupId> |
||||
<artifactId>com.springsource.com.caucho</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.log4j</groupId> |
||||
<artifactId>com.springsource.org.apache.log4j</artifactId> |
||||
<scope>compile</scope> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.commons</groupId> |
||||
<artifactId>com.springsource.org.apache.commons.httpclient</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.axis</groupId> |
||||
<artifactId>com.springsource.org.apache.axis</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.taglibs</groupId> |
||||
<artifactId>com.springsource.org.apache.taglibs.standard</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
</dependencies> |
||||
</project> |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-webmvc</artifactId> |
||||
<packaging>jar</packaging> |
||||
<version>3.0.0.M3</version> |
||||
<parent> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.parent</artifactId> |
||||
<relativePath>../build-spring-framework</relativePath> |
||||
<version>3.0.0.M3</version> |
||||
</parent> |
||||
|
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>rome</groupId> |
||||
<artifactId>rome</artifactId> |
||||
<version>0.9</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>com.lowagie</groupId> |
||||
<artifactId>itext</artifactId> |
||||
<version>2.0.8</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.freemarker</groupId> |
||||
<artifactId>freemarker</artifactId> |
||||
<version>2.3.12</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.el</groupId> |
||||
<artifactId>el-api</artifactId> |
||||
<version>1.0</version> |
||||
<scope>provided</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.servlet</groupId> |
||||
<artifactId>servlet-api</artifactId> |
||||
<version>2.5</version> |
||||
<scope>provided</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.servlet.jsp</groupId> |
||||
<artifactId>jsp-api</artifactId> |
||||
<version>2.1</version> |
||||
<scope>provided</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.servlet</groupId> |
||||
<artifactId>jstl</artifactId> |
||||
<version>1.1.2</version> |
||||
<scope>provided</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>net.sourceforge.jexcelapi</groupId> |
||||
<artifactId>jxl</artifactId> |
||||
<version>2.6.3</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>jasperreports</groupId> |
||||
<artifactId>jasperreports</artifactId> |
||||
<version>2.0.5</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>commons-fileupload</groupId> |
||||
<artifactId>commons-fileupload</artifactId> |
||||
<version>1.2</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>commons-logging</groupId> |
||||
<artifactId>commons-logging</artifactId> |
||||
<version>1.1.1</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.poi</groupId> |
||||
<artifactId>poi</artifactId> |
||||
<version>3.0.2-FINAL</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.tiles</groupId> |
||||
<artifactId>tiles-api</artifactId> |
||||
<version>2.0.5</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.tiles</groupId> |
||||
<artifactId>tiles-core</artifactId> |
||||
<version>2.0.5</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.tiles</groupId> |
||||
<artifactId>tiles-jsp</artifactId> |
||||
<version>2.0.5</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>velocity</groupId> |
||||
<artifactId>velocity</artifactId> |
||||
<version>1.5</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>velocity-tools</groupId> |
||||
<artifactId>velocity-tools-generic</artifactId> |
||||
<version>1.4</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-beans</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-context</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-context-support</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-core</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-oxm</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-web</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>junit</groupId> |
||||
<artifactId>junit</artifactId> |
||||
<version>4.5</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.easymock</groupId> |
||||
<artifactId>easymock</artifactId> |
||||
<version>2.3</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-asm</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>xmlunit</groupId> |
||||
<artifactId>xmlunit</artifactId> |
||||
<version>1.2</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>dom4j</groupId> |
||||
<artifactId>dom4j</artifactId> |
||||
<version>1.6.1</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>jaxen</groupId> |
||||
<artifactId>jaxen</artifactId> |
||||
<version>1.1.1</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>cglib</groupId> |
||||
<artifactId>cglib-nodep</artifactId> |
||||
<version>2.1_3</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
</dependencies> |
||||
<build> |
||||
<pluginManagement> |
||||
<plugins> |
||||
<plugin> |
||||
<groupId>org.apache.maven.plugins</groupId> |
||||
<artifactId>maven-surefire-plugin</artifactId> |
||||
<configuration> |
||||
<junitArtifactName>junit:junit</junitArtifactName> |
||||
</configuration> |
||||
</plugin> |
||||
</plugins> |
||||
</pluginManagement> |
||||
</build> |
||||
</project> |
||||
|
||||
@ -1,59 +1,178 @@
@@ -1,59 +1,178 @@
|
||||
<?xml version="1.0"?> |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.core</artifactId> |
||||
<packaging>jar</packaging> |
||||
<name>Spring Core Abstractions and Utilities</name> |
||||
<version>3.0.0.M1</version> |
||||
<repositories> |
||||
<repository> |
||||
<id>com.springsource.repository.bundles.external</id> |
||||
<name>SpringSource Enterprise Bundle Repository - External Bundle Releases</name> |
||||
<url>http://repository.springsource.com/maven/bundles/external</url> |
||||
</repository> |
||||
</repositories> |
||||
<build> |
||||
<plugins> |
||||
<plugin> |
||||
<groupId>org.apache.maven.plugins</groupId> |
||||
<artifactId>maven-compiler-plugin</artifactId> |
||||
<configuration> |
||||
<source>1.5</source> |
||||
<target>1.5</target> |
||||
</configuration> |
||||
</plugin> |
||||
</plugins> |
||||
</build> |
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>org.apache.commons</groupId> |
||||
<artifactId>com.springsource.org.apache.commons.logging</artifactId> |
||||
<version>1.1.1</version> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.log4j</groupId> |
||||
<artifactId>com.springsource.org.apache.log4j</artifactId> |
||||
<version>1.2.15</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.commons</groupId> |
||||
<artifactId>com.springsource.org.apache.commons.collections</artifactId> |
||||
<version>3.2.0</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.aspectj</groupId> |
||||
<artifactId>com.springsource.org.aspectj.weaver</artifactId> |
||||
<version>1.6.2.RELEASE</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.objectweb.asm</groupId> |
||||
<artifactId>com.springsource.org.objectweb.asm.commons</artifactId> |
||||
<version>2.2.3</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
</dependencies> |
||||
</project> |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-web</artifactId> |
||||
<packaging>jar</packaging> |
||||
<version>3.0.0.M3</version> |
||||
<parent> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.parent</artifactId> |
||||
<relativePath>../build-spring-framework</relativePath> |
||||
<version>3.0.0.M3</version> |
||||
</parent> |
||||
|
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>com.caucho</groupId> |
||||
<artifactId>hessian</artifactId> |
||||
<version>3.1.5</version> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>com.caucho</groupId> |
||||
<artifactId>burlap</artifactId> |
||||
<version>2.1.12</version> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.el</groupId> |
||||
<artifactId>el-api</artifactId> |
||||
<version>1.0</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.faces</groupId> |
||||
<artifactId>jsf-api</artifactId> |
||||
<version>1.2_08</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.servlet</groupId> |
||||
<artifactId>servlet-api</artifactId> |
||||
<version>2.5</version> |
||||
<scope>provided</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.servlet.jsp</groupId> |
||||
<artifactId>jsp-api</artifactId> |
||||
<version>2.1</version> |
||||
<optional>provided</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.xml</groupId> |
||||
<artifactId>jaxrpc-api</artifactId> |
||||
<version>1.1</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.xml.soap</groupId> |
||||
<artifactId>saaj-api</artifactId> |
||||
<version>1.3</version> |
||||
<scope>provided</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.xml.ws</groupId> |
||||
<artifactId>jaxws-api</artifactId> |
||||
<version>2.1-1</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>aopalliance</groupId> |
||||
<artifactId>aopalliance</artifactId> |
||||
<version>1.0</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>axis</groupId> |
||||
<artifactId>axis</artifactId> |
||||
<version>1.4</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>commons-httpclient</groupId> |
||||
<artifactId>commons-httpclient</artifactId> |
||||
<version>3.1</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>commons-logging</groupId> |
||||
<artifactId>commons-logging</artifactId> |
||||
<version>1.1.1</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>log4j</groupId> |
||||
<artifactId>log4j</artifactId> |
||||
<version>1.2.14</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-aop</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-beans</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-context</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-core</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-oxm</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>taglibs</groupId> |
||||
<artifactId>standard</artifactId> |
||||
<version>1.1.2</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>junit</groupId> |
||||
<artifactId>junit</artifactId> |
||||
<version>4.5</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>cglib</groupId> |
||||
<artifactId>cglib-nodep</artifactId> |
||||
<version>2.1_3</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.easymock</groupId> |
||||
<artifactId>easymock</artifactId> |
||||
<version>2.3</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.mortbay.jetty</groupId> |
||||
<artifactId>jetty</artifactId> |
||||
<version>6.1.9</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>xmlunit</groupId> |
||||
<artifactId>xmlunit</artifactId> |
||||
<version>1.2</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
</dependencies> |
||||
<build> |
||||
<pluginManagement> |
||||
<plugins> |
||||
<plugin> |
||||
<groupId>org.apache.maven.plugins</groupId> |
||||
<artifactId>maven-surefire-plugin</artifactId> |
||||
<configuration> |
||||
<junitArtifactName>junit:junit</junitArtifactName> |
||||
</configuration> |
||||
</plugin> |
||||
</plugins> |
||||
</pluginManagement> |
||||
</build> |
||||
</project> |
||||
|
||||
Loading…
Reference in new issue