10 changed files with 1030 additions and 475 deletions
@ -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 @@ |
|||||||
<?xml version="1.0"?> |
<?xml version="1.0" encoding="UTF-8"?> |
||||||
<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"> |
<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> |
<modelVersion>4.0.0</modelVersion> |
||||||
<groupId>org.springframework</groupId> |
<groupId>org.springframework</groupId> |
||||||
<artifactId>org.springframework.aop</artifactId> |
<artifactId>spring-aop</artifactId> |
||||||
<packaging>jar</packaging> |
<packaging>jar</packaging> |
||||||
<name>Spring Core Abstractions and Utilities</name> |
<version>3.0.0.M3</version> |
||||||
<version>3.0.0.M1</version> |
<parent> |
||||||
<repositories> |
<groupId>org.springframework</groupId> |
||||||
<repository> |
<artifactId>org.springframework.parent</artifactId> |
||||||
<id>com.springsource.repository.bundles.external</id> |
<relativePath>../build-spring-framework</relativePath> |
||||||
<name>SpringSource Enterprise Bundle Repository - External Bundle Releases</name> |
<version>3.0.0.M3</version> |
||||||
<url>http://repository.springsource.com/maven/bundles/external</url> |
</parent> |
||||||
</repository> |
|
||||||
</repositories> |
<dependencies> |
||||||
<build> |
<dependency> |
||||||
<plugins> |
<groupId>com.jamonapi</groupId> |
||||||
<plugin> |
<artifactId>jamon</artifactId> |
||||||
<groupId>org.apache.maven.plugins</groupId> |
<version>2.4</version> |
||||||
<artifactId>maven-compiler-plugin</artifactId> |
<optional>true</optional> |
||||||
<configuration> |
</dependency> |
||||||
<source>1.5</source> |
<dependency> |
||||||
<target>1.5</target> |
<groupId>cglib</groupId> |
||||||
</configuration> |
<artifactId>cglib-nodep</artifactId> |
||||||
</plugin> |
<version>2.1_3</version> |
||||||
</plugins> |
<optional>true</optional> |
||||||
</build> |
</dependency> |
||||||
<dependencies> |
<dependency> |
||||||
<dependency> |
<groupId>aopalliance</groupId> |
||||||
<groupId>commons-logging</groupId> |
<artifactId>aopalliance</artifactId> |
||||||
<artifactId>commons-logging</artifactId> |
<version>1.0</version> |
||||||
<version>1.1.1</version> |
<scope>compile</scope> |
||||||
</dependency> |
</dependency> |
||||||
<dependency> |
<dependency> |
||||||
<groupId>org.aopalliance</groupId> |
<groupId>commons-logging</groupId> |
||||||
<artifactId>com.springsource.org.aopalliance</artifactId> |
<artifactId>commons-logging</artifactId> |
||||||
<version>1.0.0</version> |
<version>1.1.1</version> |
||||||
</dependency> |
<scope>compile</scope> |
||||||
<dependency> |
</dependency> |
||||||
<groupId>org.apache.commons</groupId> |
<dependency> |
||||||
<artifactId>com.springsource.org.apache.commons.pool</artifactId> |
<groupId>commons-pool</groupId> |
||||||
<version>1.4.0</version> |
<artifactId>commons-pool</artifactId> |
||||||
<optional>true</optional> |
<version>1.4</version> |
||||||
</dependency> |
<optional>true</optional> |
||||||
</dependencies> |
</dependency> |
||||||
</project> |
<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 @@ |
|||||||
<?xml version="1.0"?> |
<?xml version="1.0" encoding="UTF-8"?> |
||||||
<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"> |
<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> |
<modelVersion>4.0.0</modelVersion> |
||||||
<groupId>org.springframework</groupId> |
<groupId>org.springframework</groupId> |
||||||
<artifactId>org.springframework.beans</artifactId> |
<artifactId>spring-beans</artifactId> |
||||||
<packaging>jar</packaging> |
<packaging>jar</packaging> |
||||||
<name>Spring Core Abstractions and Utilities</name> |
<version>3.0.0.M3</version> |
||||||
<version>3.0.0.M1</version> |
<parent> |
||||||
<repositories> |
<groupId>org.springframework</groupId> |
||||||
<repository> |
<artifactId>org.springframework.parent</artifactId> |
||||||
<id>com.springsource.repository.bundles.external</id> |
<relativePath>../build-spring-framework</relativePath> |
||||||
<name>SpringSource Enterprise Bundle Repository - External Bundle Releases</name> |
<version>3.0.0.M3</version> |
||||||
<url>http://repository.springsource.com/maven/bundles/external</url> |
</parent> |
||||||
</repository> |
|
||||||
</repositories> |
<dependencies> |
||||||
<build> |
<dependency> |
||||||
<plugins> |
<groupId>javax.el</groupId> |
||||||
<plugin> |
<artifactId>el-api</artifactId> |
||||||
<groupId>org.apache.maven.plugins</groupId> |
<version>1.0</version> |
||||||
<artifactId>maven-compiler-plugin</artifactId> |
<scope>provided</scope> |
||||||
<configuration> |
</dependency> |
||||||
<source>1.5</source> |
<dependency> |
||||||
<target>1.5</target> |
<groupId>cglib</groupId> |
||||||
</configuration> |
<artifactId>cglib-nodep</artifactId> |
||||||
</plugin> |
<version>2.1_3</version> |
||||||
</plugins> |
<optional>true</optional> |
||||||
</build> |
</dependency> |
||||||
<dependencies> |
<dependency> |
||||||
<dependency> |
<groupId>commons-logging</groupId> |
||||||
<groupId>commons-logging</groupId> |
<artifactId>commons-logging</artifactId> |
||||||
<artifactId>commons-logging</artifactId> |
<version>1.1.1</version> |
||||||
<version>1.1.1</version> |
<scope>compile</scope> |
||||||
</dependency> |
</dependency> |
||||||
<dependency> |
<dependency> |
||||||
<groupId>org.springframework</groupId> |
<groupId>org.springframework</groupId> |
||||||
<artifactId>org.springframework.core</artifactId> |
<artifactId>spring-core</artifactId> |
||||||
<version>${pom.version}</version> |
<version>3.0.0.M3</version> |
||||||
</dependency> |
<scope>compile</scope> |
||||||
<dependency> |
</dependency> |
||||||
<groupId>javax.el</groupId> |
<dependency> |
||||||
<artifactId>com.springsource.javax.el</artifactId> |
<groupId>log4j</groupId> |
||||||
<version>2.1.0</version> |
<artifactId>log4j</artifactId> |
||||||
<optional>true</optional> |
<version>1.2.14</version> |
||||||
</dependency> |
<scope>test</scope> |
||||||
<dependency> |
</dependency> |
||||||
<groupId>net.sourceforge.cglib</groupId> |
<dependency> |
||||||
<artifactId>com.springsource.net.sf.cglib</artifactId> |
<groupId>junit</groupId> |
||||||
<version>2.1.3</version> |
<artifactId>junit</artifactId> |
||||||
<optional>true</optional> |
<version>4.5</version> |
||||||
</dependency> |
<scope>test</scope> |
||||||
</dependencies> |
</dependency> |
||||||
</project> |
<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 @@ |
|||||||
<?xml version="1.0"?> |
<?xml version="1.0" encoding="UTF-8"?> |
||||||
<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"> |
<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"> |
||||||
<parent> |
<modelVersion>4.0.0</modelVersion> |
||||||
<groupId>org.springframework</groupId> |
<groupId>org.springframework</groupId> |
||||||
<artifactId>org.springframework.parent</artifactId> |
<artifactId>spring-context-support</artifactId> |
||||||
<version>3.0-M1-SNAPSHOT</version> |
<packaging>jar</packaging> |
||||||
</parent> |
<version>3.0.0.M3</version> |
||||||
<modelVersion>4.0.0</modelVersion> |
<dependencies> |
||||||
<artifactId>org.springframework.context.support</artifactId> |
<dependency> |
||||||
<packaging>jar</packaging> |
<groupId>com.bea.commonj</groupId> |
||||||
<name>Spring Framework: Context Support</name> |
<artifactId>commonj</artifactId> |
||||||
<dependencies> |
<version>1.1</version> |
||||||
<dependency> |
<optional>true</optional> |
||||||
<groupId>org.springframework</groupId> |
</dependency> |
||||||
<artifactId>org.springframework.core</artifactId> |
<dependency> |
||||||
</dependency> |
<groupId>org.freemarker</groupId> |
||||||
<dependency> |
<artifactId>freemarker</artifactId> |
||||||
<groupId>org.springframework</groupId> |
<version>2.3.12</version> |
||||||
<artifactId>org.springframework.context</artifactId> |
<optional>true</optional> |
||||||
</dependency> |
</dependency> |
||||||
<dependency> |
<dependency> |
||||||
<groupId>org.springframework</groupId> |
<groupId>javax.activation</groupId> |
||||||
<artifactId>org.springframework.jdbc</artifactId> |
<artifactId>javax.activation</artifactId> |
||||||
<optional>true</optional> |
<version>1.1</version> |
||||||
</dependency> |
<scope>provided</scope> |
||||||
<dependency> |
</dependency> |
||||||
<groupId>org.springframework</groupId> |
<dependency> |
||||||
<artifactId>org.springframework.transaction</artifactId> |
<groupId>javax.mail</groupId> |
||||||
<optional>true</optional> |
<artifactId>javax.mail</artifactId> |
||||||
</dependency> |
<version>1.4</version> |
||||||
<dependency> |
<optional>true</optional> |
||||||
<groupId>javax.mail</groupId> |
</dependency> |
||||||
<artifactId>com.springsource.javax.mail</artifactId> |
<dependency> |
||||||
<optional>true</optional> |
<groupId>net.sourceforge.ehcache</groupId> |
||||||
</dependency> |
<artifactId>net.sf.ehcache</artifactId> |
||||||
<dependency> |
<version>1.3</version> |
||||||
<groupId>org.apache.velocity</groupId> |
<optional>true</optional> |
||||||
<artifactId>com.springsource.org.apache.velocity</artifactId> |
</dependency> |
||||||
<optional>true</optional> |
<dependency> |
||||||
</dependency> |
<groupId>net.sourceforge.jasperreports</groupId> |
||||||
<dependency> |
<artifactId>net.sf.jasperreports</artifactId> |
||||||
<groupId>org.freemarker</groupId> |
<version>2.0.5</version> |
||||||
<artifactId>com.springsource.freemarker</artifactId> |
<optional>true</optional> |
||||||
<optional>true</optional> |
</dependency> |
||||||
</dependency> |
<dependency> |
||||||
<dependency> |
<groupId>commons-collections</groupId> |
||||||
<groupId>net.sourceforge.jasperreports</groupId> |
<artifactId>commons-collections</artifactId> |
||||||
<artifactId>com.springsource.net.sf.jasperreports</artifactId> |
<version>3.2</version> |
||||||
<optional>true</optional> |
<optional>true</optional> |
||||||
</dependency> |
</dependency> |
||||||
<dependency> |
<dependency> |
||||||
<groupId>com.bea.commonj</groupId> |
<groupId>commons-logging</groupId> |
||||||
<artifactId>com.springsource.commonj</artifactId> |
<artifactId>commons-logging</artifactId> |
||||||
<optional>true</optional> |
<version>1.1.1</version> |
||||||
</dependency> |
<scope>compile</scope> |
||||||
<dependency> |
</dependency> |
||||||
<groupId>com.opensymphony.quartz</groupId> |
<dependency> |
||||||
<artifactId>com.springsource.org.quartz</artifactId> |
<groupId>org.apache.velocity</groupId> |
||||||
<optional>true</optional> |
<artifactId>org.apache.velocity</artifactId> |
||||||
</dependency> |
<version>1.5</version> |
||||||
<dependency> |
<optional>true</optional> |
||||||
<groupId>net.sourceforge.ehcache</groupId> |
</dependency> |
||||||
<artifactId>com.springsource.net.sf.ehcache</artifactId> |
<dependency> |
||||||
<optional>true</optional> |
<groupId>com.opensymphony.quartz</groupId> |
||||||
</dependency> |
<artifactId>org.quartz</artifactId> |
||||||
<!-- |
<version>1.6.2</version> |
||||||
<dependency> |
<optional>true</optional> |
||||||
<groupId>org.springframework</groupId> |
</dependency> |
||||||
<artifactId>org.springframework.beans</artifactId> |
<dependency> |
||||||
</dependency> |
<groupId>org.springframework</groupId> |
||||||
<dependency> |
<artifactId>spring-beans</artifactId> |
||||||
<groupId>org.springframework</groupId> |
<version>latest.integration</version> |
||||||
<artifactId>org.springframework.aop</artifactId> |
<scope>compile</scope> |
||||||
</dependency> |
</dependency> |
||||||
<dependency> |
<dependency> |
||||||
<groupId>org.springframework</groupId> |
<groupId>org.springframework</groupId> |
||||||
<artifactId>org.springframework.agent</artifactId> |
<artifactId>spring-context</artifactId> |
||||||
</dependency> |
<version>latest.integration</version> |
||||||
<dependency> |
<scope>compile</scope> |
||||||
<groupId>javax.ejb</groupId> |
</dependency> |
||||||
<artifactId>com.springsource.javax.ejb</artifactId> |
<dependency> |
||||||
<optional>true</optional> |
<groupId>org.springframework</groupId> |
||||||
</dependency> |
<artifactId>spring-core</artifactId> |
||||||
<dependency> |
<version>latest.integration</version> |
||||||
<groupId>javax.jms</groupId> |
<scope>compile</scope> |
||||||
<artifactId>com.springsource.javax.jms</artifactId> |
</dependency> |
||||||
<optional>true</optional> |
<dependency> |
||||||
</dependency> |
<groupId>org.springframework</groupId> |
||||||
<dependency> |
<artifactId>spring-jdbc</artifactId> |
||||||
<groupId>javax.persistence</groupId> |
<version>latest.integration</version> |
||||||
<artifactId>com.springsource.javax.persistence</artifactId> |
<optional>true</optional> |
||||||
<optional>true</optional> |
</dependency> |
||||||
</dependency> |
<dependency> |
||||||
<dependency> |
<groupId>org.springframework</groupId> |
||||||
<groupId>net.sourceforge.cglib</groupId> |
<artifactId>spring-tx</artifactId> |
||||||
<artifactId>com.springsource.net.sf.cglib</artifactId> |
<version>latest.integration</version> |
||||||
<optional>true</optional> |
<optional>true</optional> |
||||||
</dependency> |
</dependency> |
||||||
<dependency> |
<dependency> |
||||||
<groupId>org.aspectj</groupId> |
<groupId>log4j</groupId> |
||||||
<artifactId>com.springsource.org.aspectj.weaver</artifactId> |
<artifactId>log4j</artifactId> |
||||||
<optional>true</optional> |
<version>1.2.14</version> |
||||||
</dependency> |
<scope>test</scope> |
||||||
<dependency> |
</dependency> |
||||||
<groupId>org.aopalliance</groupId> |
<dependency> |
||||||
<artifactId>com.springsource.org.aopalliance</artifactId> |
<groupId>junit</groupId> |
||||||
<optional>true</optional> |
<artifactId>junit</artifactId> |
||||||
</dependency> |
<version>4.5</version> |
||||||
<dependency> |
<scope>test</scope> |
||||||
<groupId>org.jruby</groupId> |
</dependency> |
||||||
<artifactId>com.springsource.org.jruby</artifactId> |
<dependency> |
||||||
<optional>true</optional> |
<groupId>org.apache.poi</groupId> |
||||||
</dependency> |
<artifactId>org.apache.poi</artifactId> |
||||||
<dependency> |
<version>3.0.2.FINAL</version> |
||||||
<groupId>org.codehaus.groovy</groupId> |
<scope>test</scope> |
||||||
<artifactId>com.springsource.org.codehaus.groovy</artifactId> |
</dependency> |
||||||
<optional>true</optional> |
<dependency> |
||||||
</dependency> |
<groupId>org.easymock</groupId> |
||||||
<dependency> |
<artifactId>easymock</artifactId> |
||||||
<groupId>org.beanshell</groupId> |
<version>2.3</version> |
||||||
<artifactId>com.springsource.bsh</artifactId> |
<scope>test</scope> |
||||||
<optional>true</optional> |
</dependency> |
||||||
</dependency> |
</dependencies> |
||||||
<dependency> |
<build> |
||||||
<groupId>edu.emory.mathcs.backport</groupId> |
<pluginManagement> |
||||||
<artifactId>com.springsource.edu.emory.mathcs.backport</artifactId> |
<plugins> |
||||||
<optional>true</optional> |
<plugin> |
||||||
</dependency> |
<groupId>org.apache.maven.plugins</groupId> |
||||||
<dependency> |
<artifactId>maven-surefire-plugin</artifactId> |
||||||
<groupId>com.oracle.oc4j</groupId> |
<configuration> |
||||||
<artifactId>com.springsource.oracle.classloader</artifactId> |
<junitArtifactName>junit:junit</junitArtifactName> |
||||||
<optional>true</optional> |
</configuration> |
||||||
</dependency> |
</plugin> |
||||||
<dependency> |
</plugins> |
||||||
<groupId>com.sun.enterprise</groupId> |
</pluginManagement> |
||||||
<artifactId>com.springsource.com.sun.enterprise.loader</artifactId> |
</build> |
||||||
<optional>true</optional> |
|
||||||
</dependency> |
|
||||||
--> |
|
||||||
</dependencies> |
|
||||||
</project> |
</project> |
||||||
@ -1,90 +1,198 @@ |
|||||||
<?xml version="1.0"?> |
<?xml version="1.0" encoding="UTF-8"?> |
||||||
<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"> |
<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"> |
||||||
<parent> |
<modelVersion>4.0.0</modelVersion> |
||||||
<groupId>org.springframework</groupId> |
<groupId>org.springframework</groupId> |
||||||
<artifactId>org.springframework.parent</artifactId> |
<artifactId>spring-context</artifactId> |
||||||
<version>3.0-M1-SNAPSHOT</version> |
<packaging>jar</packaging> |
||||||
</parent> |
<version>3.0.0.M3</version> |
||||||
<modelVersion>4.0.0</modelVersion> |
<parent> |
||||||
<artifactId>org.springframework.context</artifactId> |
<groupId>org.springframework</groupId> |
||||||
<packaging>jar</packaging> |
<artifactId>org.springframework.parent</artifactId> |
||||||
<name>Spring Framework: Context</name> |
<relativePath>../build-spring-framework</relativePath> |
||||||
<dependencies> |
<version>3.0.0.M3</version> |
||||||
<dependency> |
</parent> |
||||||
<groupId>org.springframework</groupId> |
|
||||||
<artifactId>org.springframework.core</artifactId> |
<dependencies> |
||||||
</dependency> |
<dependency> |
||||||
<dependency> |
<groupId>backport-util-concurrent</groupId> |
||||||
<groupId>org.springframework</groupId> |
<artifactId>backport-util-concurrent</artifactId> |
||||||
<artifactId>org.springframework.beans</artifactId> |
<version>3.0</version> |
||||||
</dependency> |
<optional>true</optional> |
||||||
<dependency> |
</dependency> |
||||||
<groupId>org.springframework</groupId> |
<dependency> |
||||||
<artifactId>org.springframework.aop</artifactId> |
<groupId>javax.annotation</groupId> |
||||||
</dependency> |
<artifactId>jsr250-api</artifactId> |
||||||
<dependency> |
<version>1.0</version> |
||||||
<groupId>org.springframework</groupId> |
<optional>true</optional> |
||||||
<artifactId>org.springframework.agent</artifactId> |
</dependency> |
||||||
</dependency> |
<dependency> |
||||||
<dependency> |
<groupId>javax.ejb</groupId> |
||||||
<groupId>javax.ejb</groupId> |
<artifactId>ejb-api</artifactId> |
||||||
<artifactId>com.springsource.javax.ejb</artifactId> |
<version>3.0</version> |
||||||
<optional>true</optional> |
<optional>true</optional> |
||||||
</dependency> |
</dependency> |
||||||
<dependency> |
<dependency> |
||||||
<groupId>javax.jms</groupId> |
<groupId>org.apache.geronimo.specs</groupId> |
||||||
<artifactId>com.springsource.javax.jms</artifactId> |
<artifactId>geronimo-jms_1.1_spec</artifactId> |
||||||
<optional>true</optional> |
<version>1.1</version> |
||||||
</dependency> |
<optional>true</optional> |
||||||
<dependency> |
</dependency> |
||||||
<groupId>javax.persistence</groupId> |
<dependency> |
||||||
<artifactId>com.springsource.javax.persistence</artifactId> |
<groupId>javax.persistence</groupId> |
||||||
<optional>true</optional> |
<artifactId>persistence-api</artifactId> |
||||||
</dependency> |
<version>1.0</version> |
||||||
<dependency> |
<optional>true</optional> |
||||||
<groupId>net.sourceforge.cglib</groupId> |
</dependency> |
||||||
<artifactId>com.springsource.net.sf.cglib</artifactId> |
<dependency> |
||||||
<optional>true</optional> |
<groupId>javax.xml.ws</groupId> |
||||||
</dependency> |
<artifactId>jaxws-api</artifactId> |
||||||
<dependency> |
<version>2.1-1</version> |
||||||
<groupId>org.aspectj</groupId> |
<optional>true</optional> |
||||||
<artifactId>com.springsource.org.aspectj.weaver</artifactId> |
</dependency> |
||||||
<optional>true</optional> |
<dependency> |
||||||
</dependency> |
<groupId>cglib</groupId> |
||||||
<dependency> |
<artifactId>cglib-nodep</artifactId> |
||||||
<groupId>org.aopalliance</groupId> |
<version>2.1_3</version> |
||||||
<artifactId>com.springsource.org.aopalliance</artifactId> |
<optional>true</optional> |
||||||
<optional>true</optional> |
</dependency> |
||||||
</dependency> |
<dependency> |
||||||
<dependency> |
<groupId>org.antlr</groupId> |
||||||
<groupId>org.jruby</groupId> |
<artifactId>antlr</artifactId> |
||||||
<artifactId>com.springsource.org.jruby</artifactId> |
<version>2.7.6</version> |
||||||
<optional>true</optional> |
<scope>test</scope> |
||||||
</dependency> |
</dependency> |
||||||
<dependency> |
<dependency> |
||||||
<groupId>org.codehaus.groovy</groupId> |
<groupId>aopalliance</groupId> |
||||||
<artifactId>com.springsource.org.codehaus.groovy</artifactId> |
<artifactId>aopalliance</artifactId> |
||||||
<optional>true</optional> |
<version>1.0</version> |
||||||
</dependency> |
<scope>compile</scope> |
||||||
<dependency> |
</dependency> |
||||||
<groupId>org.beanshell</groupId> |
<dependency> |
||||||
<artifactId>com.springsource.bsh</artifactId> |
<groupId>commons-logging</groupId> |
||||||
<optional>true</optional> |
<artifactId>commons-logging</artifactId> |
||||||
</dependency> |
<version>1.1.1</version> |
||||||
<dependency> |
<scope>compile</scope> |
||||||
<groupId>edu.emory.mathcs.backport</groupId> |
</dependency> |
||||||
<artifactId>com.springsource.edu.emory.mathcs.backport</artifactId> |
<dependency> |
||||||
<optional>true</optional> |
<groupId>org.aspectj</groupId> |
||||||
</dependency> |
<artifactId>aspectjweaver</artifactId> |
||||||
<dependency> |
<version>1.6.2</version> |
||||||
<groupId>com.oracle.oc4j</groupId> |
<optional>true</optional> |
||||||
<artifactId>com.springsource.oracle.classloader</artifactId> |
</dependency> |
||||||
<optional>true</optional> |
<dependency> |
||||||
</dependency> |
<groupId>org.beanshell</groupId> |
||||||
<dependency> |
<artifactId>bsh</artifactId> |
||||||
<groupId>com.sun.enterprise</groupId> |
<version>2.0b4</version> |
||||||
<artifactId>com.springsource.com.sun.enterprise.loader</artifactId> |
<optional>true</optional> |
||||||
<optional>true</optional> |
</dependency> |
||||||
</dependency> |
<dependency> |
||||||
</dependencies> |
<groupId>org.codehaus.groovy</groupId> |
||||||
</project> |
<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 @@ |
|||||||
<?xml version="1.0"?> |
<?xml version="1.0" encoding="UTF-8"?> |
||||||
<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"> |
<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"> |
||||||
<parent> |
<modelVersion>4.0.0</modelVersion> |
||||||
<groupId>org.springframework</groupId> |
<groupId>org.springframework</groupId> |
||||||
<artifactId>org.springframework.parent</artifactId> |
<artifactId>spring-core</artifactId> |
||||||
<version>3.0-M1-SNAPSHOT</version> |
<packaging>jar</packaging> |
||||||
</parent> |
<version>3.0.0.M3</version> |
||||||
<modelVersion>4.0.0</modelVersion> |
<parent> |
||||||
<artifactId>org.springframework.core</artifactId> |
<groupId>org.springframework</groupId> |
||||||
<packaging>jar</packaging> |
<artifactId>org.springframework.parent</artifactId> |
||||||
<name>Spring Framework: Core</name> |
<relativePath>../build-spring-framework</relativePath> |
||||||
<dependencies> |
<version>3.0.0.M3</version> |
||||||
<dependency> |
</parent> |
||||||
<groupId>org.apache.log4j</groupId> |
|
||||||
<artifactId>com.springsource.org.apache.log4j</artifactId> |
<dependencies> |
||||||
<scope>compile</scope> |
<dependency> |
||||||
<optional>true</optional> |
<groupId>commons-collections</groupId> |
||||||
</dependency> |
<artifactId>commons-collections</artifactId> |
||||||
<dependency> |
<version>3.2</version> |
||||||
<groupId>org.apache.commons</groupId> |
<optional>true</optional> |
||||||
<artifactId>com.springsource.org.apache.commons.collections</artifactId> |
</dependency> |
||||||
<optional>true</optional> |
<dependency> |
||||||
</dependency> |
<groupId>commons-logging</groupId> |
||||||
<dependency> |
<artifactId>commons-logging</artifactId> |
||||||
<groupId>org.aspectj</groupId> |
<version>1.1.1</version> |
||||||
<artifactId>com.springsource.org.aspectj.weaver</artifactId> |
<scope>compile</scope> |
||||||
<optional>true</optional> |
</dependency> |
||||||
</dependency> |
<dependency> |
||||||
<dependency> |
<groupId>log4j</groupId> |
||||||
<groupId>org.objectweb.asm</groupId> |
<artifactId>log4j</artifactId> |
||||||
<artifactId>com.springsource.org.objectweb.asm</artifactId> |
<version>1.2.14</version> |
||||||
<optional>true</optional> |
<optional>true</optional> |
||||||
</dependency> |
</dependency> |
||||||
<dependency> |
<dependency> |
||||||
<groupId>org.objectweb.asm</groupId> |
<groupId>org.aspectj</groupId> |
||||||
<artifactId>com.springsource.org.objectweb.asm.commons</artifactId> |
<artifactId>aspectjweaver</artifactId> |
||||||
<optional>true</optional> |
<version>1.6.2</version> |
||||||
</dependency> |
<optional>true</optional> |
||||||
</dependencies> |
</dependency> |
||||||
</project> |
<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 @@ |
|||||||
<?xml version="1.0"?> |
<?xml version="1.0" encoding="UTF-8"?> |
||||||
<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"> |
<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"> |
||||||
<parent> |
<modelVersion>4.0.0</modelVersion> |
||||||
<groupId>org.springframework</groupId> |
<groupId>org.springframework</groupId> |
||||||
<artifactId>org.springframework.parent</artifactId> |
<artifactId>spring-expression</artifactId> |
||||||
<version>3.0-M1-SNAPSHOT</version> |
<packaging>jar</packaging> |
||||||
</parent> |
<version>3.0.0.M3</version> |
||||||
<modelVersion>4.0.0</modelVersion> |
<parent> |
||||||
<artifactId>org.springframework.expression</artifactId> |
<groupId>org.springframework</groupId> |
||||||
<packaging>jar</packaging> |
<artifactId>org.springframework.parent</artifactId> |
||||||
<name>Spring Framework: Expression Language</name> |
<relativePath>../build-spring-framework</relativePath> |
||||||
<dependencies> |
<version>3.0.0.M3</version> |
||||||
<dependency> |
</parent> |
||||||
<groupId>org.springframework</groupId> |
|
||||||
<artifactId>org.springframework.core</artifactId> |
<dependencies> |
||||||
<version>${pom.version}</version> |
<dependency> |
||||||
</dependency> |
<groupId>commons-logging</groupId> |
||||||
<dependency> |
<artifactId>commons-logging</artifactId> |
||||||
<groupId>org.antlr</groupId> |
<version>1.1.1</version> |
||||||
<artifactId>com.springsource.org.antlr</artifactId> |
<scope>compile</scope> |
||||||
<version>3.0.1</version> |
</dependency> |
||||||
</dependency> |
<dependency> |
||||||
</dependencies> |
<groupId>org.springframework</groupId> |
||||||
</project> |
<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 @@ |
|||||||
<?xml version="1.0"?> |
<?xml version="1.0" encoding="UTF-8"?> |
||||||
<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"> |
<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> |
<modelVersion>4.0.0</modelVersion> |
||||||
<parent> |
<groupId>org.springframework</groupId> |
||||||
<groupId>org.springframework</groupId> |
<artifactId>spring-instrument-classloading</artifactId> |
||||||
<artifactId>org.springframework.parent</artifactId> |
<packaging>jar</packaging> |
||||||
<version>3.0-M1-SNAPSHOT</version> |
<version>3.0.0.M3</version> |
||||||
</parent> |
<parent> |
||||||
<artifactId>org.springframework.agent</artifactId> |
<groupId>org.springframework</groupId> |
||||||
<packaging>jar</packaging> |
<artifactId>org.springframework.parent</artifactId> |
||||||
<name>Spring Framework: Agent</name> |
<relativePath>../build-spring-framework</relativePath> |
||||||
</project> |
<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 @@ |
|||||||
<?xml version="1.0"?> |
<?xml version="1.0" encoding="UTF-8"?> |
||||||
<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"> |
<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> |
<modelVersion>4.0.0</modelVersion> |
||||||
<parent> |
<groupId>org.springframework</groupId> |
||||||
<groupId>org.springframework</groupId> |
<artifactId>spring-instrument</artifactId> |
||||||
<artifactId>org.springframework.parent</artifactId> |
<packaging>jar</packaging> |
||||||
<version>3.0-M1-SNAPSHOT</version> |
<version>3.0.0.M3</version> |
||||||
</parent> |
<parent> |
||||||
<artifactId>org.springframework.agent</artifactId> |
<groupId>org.springframework</groupId> |
||||||
<packaging>jar</packaging> |
<artifactId>org.springframework.parent</artifactId> |
||||||
<name>Spring Framework: Agent</name> |
<relativePath>../build-spring-framework</relativePath> |
||||||
</project> |
<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 @@ |
|||||||
<?xml version="1.0"?> |
<?xml version="1.0" encoding="UTF-8"?> |
||||||
<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"> |
<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> |
<modelVersion>4.0.0</modelVersion> |
||||||
<groupId>org.springframework</groupId> |
<groupId>org.springframework</groupId> |
||||||
<artifactId>org.springframework.core</artifactId> |
<artifactId>spring-tx</artifactId> |
||||||
<packaging>jar</packaging> |
<packaging>jar</packaging> |
||||||
<name>Spring Core Abstractions and Utilities</name> |
<version>3.0.0.M3</version> |
||||||
<version>3.0.0.M1</version> |
<parent> |
||||||
<repositories> |
<groupId>org.springframework</groupId> |
||||||
<repository> |
<artifactId>org.springframework.parent</artifactId> |
||||||
<id>com.springsource.repository.bundles.external</id> |
<relativePath>../build-spring-framework</relativePath> |
||||||
<name>SpringSource Enterprise Bundle Repository - External Bundle Releases</name> |
<version>3.0.0.M3</version> |
||||||
<url>http://repository.springsource.com/maven/bundles/external</url> |
</parent> |
||||||
</repository> |
|
||||||
</repositories> |
<dependencies> |
||||||
<build> |
<dependency> |
||||||
<plugins> |
<groupId>com.ibm.websphere</groupId> |
||||||
<plugin> |
<artifactId>uow_api</artifactId> |
||||||
<groupId>org.apache.maven.plugins</groupId> |
<version>6</version> |
||||||
<artifactId>maven-compiler-plugin</artifactId> |
<type>jar</type> |
||||||
<configuration> |
<scope>provided</scope> |
||||||
<source>1.5</source> |
<optional>true</optional> |
||||||
<target>1.5</target> |
</dependency> |
||||||
</configuration> |
<dependency> |
||||||
</plugin> |
<groupId>javax.ejb</groupId> |
||||||
</plugins> |
<artifactId>ejb-api</artifactId> |
||||||
</build> |
<version>3.0</version> |
||||||
<dependencies> |
<optional>true</optional> |
||||||
<dependency> |
</dependency> |
||||||
<groupId>org.apache.commons</groupId> |
<dependency> |
||||||
<artifactId>com.springsource.org.apache.commons.logging</artifactId> |
<groupId>javax.resource</groupId> |
||||||
<version>1.1.1</version> |
<artifactId>connector-api</artifactId> |
||||||
</dependency> |
<version>1.5</version> |
||||||
<dependency> |
<optional>true</optional> |
||||||
<groupId>org.apache.log4j</groupId> |
</dependency> |
||||||
<artifactId>com.springsource.org.apache.log4j</artifactId> |
<dependency> |
||||||
<version>1.2.15</version> |
<groupId>org.apache.geronimo.specs</groupId> |
||||||
<optional>true</optional> |
<artifactId>geronimo-jta_1.1_spec</artifactId> |
||||||
</dependency> |
<version>1.1</version> |
||||||
<dependency> |
<scope>provided</scope> |
||||||
<groupId>org.apache.commons</groupId> |
</dependency> |
||||||
<artifactId>com.springsource.org.apache.commons.collections</artifactId> |
<dependency> |
||||||
<version>3.2.0</version> |
<groupId>aopalliance</groupId> |
||||||
<optional>true</optional> |
<artifactId>aopalliance</artifactId> |
||||||
</dependency> |
<version>1.0</version> |
||||||
<dependency> |
<scope>compile</scope> |
||||||
<groupId>org.aspectj</groupId> |
</dependency> |
||||||
<artifactId>com.springsource.org.aspectj.weaver</artifactId> |
<dependency> |
||||||
<version>1.6.2.RELEASE</version> |
<groupId>commons-logging</groupId> |
||||||
<optional>true</optional> |
<artifactId>commons-logging</artifactId> |
||||||
</dependency> |
<version>1.1.1</version> |
||||||
<dependency> |
<scope>compile</scope> |
||||||
<groupId>org.objectweb.asm</groupId> |
</dependency> |
||||||
<artifactId>com.springsource.org.objectweb.asm.commons</artifactId> |
<dependency> |
||||||
<version>2.2.3</version> |
<groupId>org.springframework</groupId> |
||||||
<optional>true</optional> |
<artifactId>spring-aop</artifactId> |
||||||
</dependency> |
<version>3.0.0.M3</version> |
||||||
</dependencies> |
<scope>compile</scope> |
||||||
</project> |
</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