10 changed files with 1030 additions and 475 deletions
@ -0,0 +1,168 @@
@@ -0,0 +1,168 @@
|
||||
<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.parent</artifactId> |
||||
<name>Spring Framework</name> |
||||
<version>3.0.0.M3</version> |
||||
<packaging>pom</packaging> |
||||
|
||||
<repositories> |
||||
<repository> |
||||
<id>java.net</id> |
||||
<name>Java.net Repository for Maven</name> |
||||
<url>http://download.java.net/maven/1/</url> |
||||
<layout>legacy</layout> |
||||
</repository> |
||||
<!-- for websphere uow --> |
||||
<repository> |
||||
<id>maven.seasar.org</id> |
||||
<name>The Seasar Foundation Maven2 Repository</name> |
||||
<url>http://maven.seasar.org/maven2</url> |
||||
</repository> |
||||
</repositories> |
||||
|
||||
<dependencyManagement> |
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>javax.xml.ws</groupId> |
||||
<artifactId>jaxws-api</artifactId> |
||||
<version>2.1-1</version> |
||||
<exclusions> |
||||
<exclusion> |
||||
<groupId>javax.jws</groupId> |
||||
<artifactId>jsr181</artifactId> |
||||
</exclusion> |
||||
</exclusions> |
||||
</dependency> |
||||
<!-- |
||||
<dependency> |
||||
<artifactId>org.springframework</artifactId> |
||||
<groupId>spring-context</groupId> |
||||
<version>3.0.0.M3</version> |
||||
<exclusions> |
||||
<exclusion> |
||||
<groupId>com.oracle.oc4j</groupId> |
||||
<artifactId>oracle.classloader</artifactId> |
||||
</exclusion> |
||||
</exclusions> |
||||
</dependency> |
||||
--> |
||||
</dependencies> |
||||
</dependencyManagement> |
||||
|
||||
<profiles> |
||||
<profile> |
||||
<id>strict</id> |
||||
<properties> |
||||
<maven.test.failure.ignore>false</maven.test.failure.ignore> |
||||
</properties> |
||||
</profile> |
||||
<profile> |
||||
<id>fast</id> |
||||
<properties> |
||||
<maven.test.skip>true</maven.test.skip> |
||||
<maven.javadoc.skip>true</maven.javadoc.skip> |
||||
</properties> |
||||
</profile> |
||||
<profile> |
||||
<id>staging</id> |
||||
<distributionManagement> |
||||
<site> |
||||
<id>staging</id> |
||||
<url>file:///${user.dir}/target/staging</url> |
||||
</site> |
||||
<repository> |
||||
<id>staging</id> |
||||
<url>file:///${user.dir}/target/staging</url> |
||||
</repository> |
||||
<snapshotRepository> |
||||
<id>staging</id> |
||||
<url>file:///${user.dir}/target/staging</url> |
||||
</snapshotRepository> |
||||
</distributionManagement> |
||||
</profile> |
||||
<profile> |
||||
<id>release</id> |
||||
<build> |
||||
<plugins> |
||||
<plugin> |
||||
<artifactId>maven-javadoc-plugin</artifactId> |
||||
<executions> |
||||
<execution> |
||||
<id>javadoc</id> |
||||
<phase>package</phase> |
||||
<goals> |
||||
<goal>jar</goal> |
||||
</goals> |
||||
</execution> |
||||
</executions> |
||||
</plugin> |
||||
<plugin> |
||||
<artifactId>maven-source-plugin</artifactId> |
||||
<executions> |
||||
<execution> |
||||
<id>attach-sources</id> |
||||
<goals> |
||||
<goal>jar</goal> |
||||
</goals> |
||||
</execution> |
||||
</executions> |
||||
</plugin> |
||||
</plugins> |
||||
</build> |
||||
</profile> |
||||
</profiles> |
||||
|
||||
<modules> |
||||
<module>../org.springframework.aop</module> |
||||
<module>../org.springframework.aspects</module> |
||||
<module>../org.springframework.beans</module> |
||||
<module>../org.springframework.context</module> |
||||
<module>../org.springframework.context.support</module> |
||||
<module>../org.springframework.core</module> |
||||
<module>../org.springframework.expression</module> |
||||
<module>../org.springframework.instrument</module> |
||||
<module>../org.springframework.instrument.classloading</module> |
||||
<module>../org.springframework.integration-tests</module> |
||||
<module>../org.springframework.jdbc</module> |
||||
<module>../org.springframework.jms</module> |
||||
<module>../org.springframework.orm</module> |
||||
<module>../org.springframework.oxm</module> |
||||
<module>../org.springframework.test</module> |
||||
<module>../org.springframework.transaction</module> |
||||
<module>../org.springframework.web</module> |
||||
<module>../org.springframework.web.portlet</module> |
||||
<module>../org.springframework.web.servlet</module> |
||||
</modules> |
||||
|
||||
<url>http://static.springframework.org/docs</url> |
||||
<organization> |
||||
<name>SpringSource</name> |
||||
<url>http://www.springsource.com</url> |
||||
</organization> |
||||
<pluginRepositories> |
||||
<pluginRepository> |
||||
<id>com.springsource.repository.bundles.milestone</id> |
||||
<name>SpringSource Enterprise Bundle Repository - SpringSource Bundle Milestones</name> |
||||
<url>http://repository.springsource.com/maven/bundles/milestone</url> |
||||
<snapshots> |
||||
<enabled>false</enabled> |
||||
</snapshots> |
||||
</pluginRepository> |
||||
<pluginRepository> |
||||
<id>com.springsource.repository.bundles.snapshot</id> |
||||
<name>SpringSource Enterprise Bundle Repository - SpringSource Bundle Snapshots</name> |
||||
<url>http://repository.springsource.com/maven/bundles/snapshot</url> |
||||
</pluginRepository> |
||||
<pluginRepository> |
||||
<id>agilejava</id> |
||||
<url>http://agilejava.com/maven</url> |
||||
<snapshots> |
||||
<enabled>false</enabled> |
||||
</snapshots> |
||||
</pluginRepository> |
||||
</pluginRepositories> |
||||
</project> |
||||
@ -1,46 +1,108 @@
@@ -1,46 +1,108 @@
|
||||
<?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.aop</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>commons-logging</groupId> |
||||
<artifactId>commons-logging</artifactId> |
||||
<version>1.1.1</version> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.aopalliance</groupId> |
||||
<artifactId>com.springsource.org.aopalliance</artifactId> |
||||
<version>1.0.0</version> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.commons</groupId> |
||||
<artifactId>com.springsource.org.apache.commons.pool</artifactId> |
||||
<version>1.4.0</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-aop</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.jamonapi</groupId> |
||||
<artifactId>jamon</artifactId> |
||||
<version>2.4</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>cglib</groupId> |
||||
<artifactId>cglib-nodep</artifactId> |
||||
<version>2.1_3</version> |
||||
<optional>true</optional> |
||||
</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.4</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.springframework</groupId> |
||||
<artifactId>spring-beans</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>log4j</groupId> |
||||
<artifactId>log4j</artifactId> |
||||
<version>1.2.14</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>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> |
||||
</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,52 +1,72 @@
@@ -1,52 +1,72 @@
|
||||
<?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.beans</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>commons-logging</groupId> |
||||
<artifactId>commons-logging</artifactId> |
||||
<version>1.1.1</version> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.core</artifactId> |
||||
<version>${pom.version}</version> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.el</groupId> |
||||
<artifactId>com.springsource.javax.el</artifactId> |
||||
<version>2.1.0</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>net.sourceforge.cglib</groupId> |
||||
<artifactId>com.springsource.net.sf.cglib</artifactId> |
||||
<version>2.1.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-beans</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>cglib</groupId> |
||||
<artifactId>cglib-nodep</artifactId> |
||||
<version>2.1_3</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-core</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>log4j</groupId> |
||||
<artifactId>log4j</artifactId> |
||||
<version>1.2.14</version> |
||||
<scope>test</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> |
||||
</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,141 +1,137 @@
@@ -1,141 +1,137 @@
|
||||
<?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.context.support</artifactId> |
||||
<packaging>jar</packaging> |
||||
<name>Spring Framework: Context Support</name> |
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.core</artifactId> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.context</artifactId> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.jdbc</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.transaction</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.mail</groupId> |
||||
<artifactId>com.springsource.javax.mail</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.velocity</groupId> |
||||
<artifactId>com.springsource.org.apache.velocity</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.freemarker</groupId> |
||||
<artifactId>com.springsource.freemarker</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>net.sourceforge.jasperreports</groupId> |
||||
<artifactId>com.springsource.net.sf.jasperreports</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>com.bea.commonj</groupId> |
||||
<artifactId>com.springsource.commonj</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>com.opensymphony.quartz</groupId> |
||||
<artifactId>com.springsource.org.quartz</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>net.sourceforge.ehcache</groupId> |
||||
<artifactId>com.springsource.net.sf.ehcache</artifactId> |
||||
<optional>true</optional> |
||||
</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.agent</artifactId> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.ejb</groupId> |
||||
<artifactId>com.springsource.javax.ejb</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.jms</groupId> |
||||
<artifactId>com.springsource.javax.jms</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.persistence</groupId> |
||||
<artifactId>com.springsource.javax.persistence</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>net.sourceforge.cglib</groupId> |
||||
<artifactId>com.springsource.net.sf.cglib</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.aspectj</groupId> |
||||
<artifactId>com.springsource.org.aspectj.weaver</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.aopalliance</groupId> |
||||
<artifactId>com.springsource.org.aopalliance</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.jruby</groupId> |
||||
<artifactId>com.springsource.org.jruby</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.codehaus.groovy</groupId> |
||||
<artifactId>com.springsource.org.codehaus.groovy</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.beanshell</groupId> |
||||
<artifactId>com.springsource.bsh</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>edu.emory.mathcs.backport</groupId> |
||||
<artifactId>com.springsource.edu.emory.mathcs.backport</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>com.oracle.oc4j</groupId> |
||||
<artifactId>com.springsource.oracle.classloader</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>com.sun.enterprise</groupId> |
||||
<artifactId>com.springsource.com.sun.enterprise.loader</artifactId> |
||||
<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-context-support</artifactId> |
||||
<packaging>jar</packaging> |
||||
<version>3.0.0.M3</version> |
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>com.bea.commonj</groupId> |
||||
<artifactId>commonj</artifactId> |
||||
<version>1.1</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.activation</groupId> |
||||
<artifactId>javax.activation</artifactId> |
||||
<version>1.1</version> |
||||
<scope>provided</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.mail</groupId> |
||||
<artifactId>javax.mail</artifactId> |
||||
<version>1.4</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>net.sourceforge.ehcache</groupId> |
||||
<artifactId>net.sf.ehcache</artifactId> |
||||
<version>1.3</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>net.sourceforge.jasperreports</groupId> |
||||
<artifactId>net.sf.jasperreports</artifactId> |
||||
<version>2.0.5</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>commons-collections</groupId> |
||||
<artifactId>commons-collections</artifactId> |
||||
<version>3.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.velocity</groupId> |
||||
<artifactId>org.apache.velocity</artifactId> |
||||
<version>1.5</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>com.opensymphony.quartz</groupId> |
||||
<artifactId>org.quartz</artifactId> |
||||
<version>1.6.2</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-beans</artifactId> |
||||
<version>latest.integration</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-context</artifactId> |
||||
<version>latest.integration</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-core</artifactId> |
||||
<version>latest.integration</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-jdbc</artifactId> |
||||
<version>latest.integration</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-tx</artifactId> |
||||
<version>latest.integration</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>log4j</groupId> |
||||
<artifactId>log4j</artifactId> |
||||
<version>1.2.14</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>junit</groupId> |
||||
<artifactId>junit</artifactId> |
||||
<version>4.5</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.easymock</groupId> |
||||
<artifactId>easymock</artifactId> |
||||
<version>2.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,90 +1,198 @@
@@ -1,90 +1,198 @@
|
||||
<?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.context</artifactId> |
||||
<packaging>jar</packaging> |
||||
<name>Spring Framework: Context</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.agent</artifactId> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.ejb</groupId> |
||||
<artifactId>com.springsource.javax.ejb</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.jms</groupId> |
||||
<artifactId>com.springsource.javax.jms</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.persistence</groupId> |
||||
<artifactId>com.springsource.javax.persistence</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>net.sourceforge.cglib</groupId> |
||||
<artifactId>com.springsource.net.sf.cglib</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.aspectj</groupId> |
||||
<artifactId>com.springsource.org.aspectj.weaver</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.aopalliance</groupId> |
||||
<artifactId>com.springsource.org.aopalliance</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.jruby</groupId> |
||||
<artifactId>com.springsource.org.jruby</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.codehaus.groovy</groupId> |
||||
<artifactId>com.springsource.org.codehaus.groovy</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.beanshell</groupId> |
||||
<artifactId>com.springsource.bsh</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>edu.emory.mathcs.backport</groupId> |
||||
<artifactId>com.springsource.edu.emory.mathcs.backport</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>com.oracle.oc4j</groupId> |
||||
<artifactId>com.springsource.oracle.classloader</artifactId> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>com.sun.enterprise</groupId> |
||||
<artifactId>com.springsource.com.sun.enterprise.loader</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-context</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>backport-util-concurrent</groupId> |
||||
<artifactId>backport-util-concurrent</artifactId> |
||||
<version>3.0</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.annotation</groupId> |
||||
<artifactId>jsr250-api</artifactId> |
||||
<version>1.0</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.ejb</groupId> |
||||
<artifactId>ejb-api</artifactId> |
||||
<version>3.0</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.geronimo.specs</groupId> |
||||
<artifactId>geronimo-jms_1.1_spec</artifactId> |
||||
<version>1.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.xml.ws</groupId> |
||||
<artifactId>jaxws-api</artifactId> |
||||
<version>2.1-1</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>cglib</groupId> |
||||
<artifactId>cglib-nodep</artifactId> |
||||
<version>2.1_3</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.antlr</groupId> |
||||
<artifactId>antlr</artifactId> |
||||
<version>2.7.6</version> |
||||
<scope>test</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>org.aspectj</groupId> |
||||
<artifactId>aspectjweaver</artifactId> |
||||
<version>1.6.2</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.beanshell</groupId> |
||||
<artifactId>bsh</artifactId> |
||||
<version>2.0b4</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.codehaus.groovy</groupId> |
||||
<artifactId>groovy</artifactId> |
||||
<version>1.5.1</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.jruby</groupId> |
||||
<artifactId>jruby</artifactId> |
||||
<version>1.1</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-core</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-expression</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-instrument</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<optional>true</optional> |
||||
</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>commons-pool</groupId> |
||||
<artifactId>commons-pool</artifactId> |
||||
<version>1.4</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>log4j</groupId> |
||||
<artifactId>log4j</artifactId> |
||||
<version>1.2.14</version> |
||||
<scope>test</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>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> |
||||
</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,96 @@
@@ -1,40 +1,96 @@
|
||||
<?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-core</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-collections</groupId> |
||||
<artifactId>commons-collections</artifactId> |
||||
<version>3.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>log4j</groupId> |
||||
<artifactId>log4j</artifactId> |
||||
<version>1.2.14</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.aspectj</groupId> |
||||
<artifactId>aspectjweaver</artifactId> |
||||
<version>1.6.2</version> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<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> |
||||
<dependency> |
||||
<groupId>javax.servlet</groupId> |
||||
<artifactId>servlet-api</artifactId> |
||||
<version>2.5</version> |
||||
<scope>test</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>xmlunit</groupId> |
||||
<artifactId>xmlunit</artifactId> |
||||
<version>1.2</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.codehaus.woodstox</groupId> |
||||
<artifactId>wstx-asl</artifactId> |
||||
<version>3.2.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,24 +1,60 @@
@@ -1,24 +1,60 @@
|
||||
<?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.expression</artifactId> |
||||
<packaging>jar</packaging> |
||||
<name>Spring Framework: Expression Language</name> |
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.core</artifactId> |
||||
<version>${pom.version}</version> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.antlr</groupId> |
||||
<artifactId>com.springsource.org.antlr</artifactId> |
||||
<version>3.0.1</version> |
||||
</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-expression</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.springframework</groupId> |
||||
<artifactId>spring-core</artifactId> |
||||
<version>3.0.0.M3</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.antlr</groupId> |
||||
<artifactId>antlr</artifactId> |
||||
<version>3.0.1</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>log4j</groupId> |
||||
<artifactId>log4j</artifactId> |
||||
<version>1.2.14</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,12 +1,36 @@
@@ -1,12 +1,36 @@
|
||||
<?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> |
||||
<parent> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.parent</artifactId> |
||||
<version>3.0-M1-SNAPSHOT</version> |
||||
</parent> |
||||
<artifactId>org.springframework.agent</artifactId> |
||||
<packaging>jar</packaging> |
||||
<name>Spring Framework: Agent</name> |
||||
</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-instrument-classloading</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.tomcat</groupId> |
||||
<artifactId>catalina</artifactId> |
||||
<version>6.0.16</version> |
||||
<scope>provided</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,12 +1,28 @@
@@ -1,12 +1,28 @@
|
||||
<?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> |
||||
<parent> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>org.springframework.parent</artifactId> |
||||
<version>3.0-M1-SNAPSHOT</version> |
||||
</parent> |
||||
<artifactId>org.springframework.agent</artifactId> |
||||
<packaging>jar</packaging> |
||||
<name>Spring Framework: Agent</name> |
||||
</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-instrument</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> |
||||
|
||||
<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,128 @@
@@ -1,59 +1,128 @@
|
||||
<?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-tx</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.ibm.websphere</groupId> |
||||
<artifactId>uow_api</artifactId> |
||||
<version>6</version> |
||||
<type>jar</type> |
||||
<scope>provided</scope> |
||||
<optional>true</optional> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.ejb</groupId> |
||||
<artifactId>ejb-api</artifactId> |
||||
<version>3.0</version> |
||||
<optional>true</optional> |
||||
</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>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>junit</groupId> |
||||
<artifactId>junit</artifactId> |
||||
<version>4.5</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.aspectj</groupId> |
||||
<artifactId>aspectjweaver</artifactId> |
||||
<version>1.6.2</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>easymockclassextension</artifactId> |
||||
<version>2.3</version> |
||||
<scope>test</scope> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>javax.persistence</groupId> |
||||
<artifactId>persistence-api</artifactId> |
||||
<version>1.0</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> |
||||
|
||||
Loading…
Reference in new issue