You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
2.0 KiB
70 lines
2.0 KiB
<?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.1.0.BUILD-SNAPSHOT</version> |
|
<parent> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-parent</artifactId> |
|
<relativePath>../org.springframework.spring-parent</relativePath> |
|
<version>3.1.0.BUILD-SNAPSHOT</version> |
|
</parent> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>commons-collections</groupId> |
|
<artifactId>commons-collections</artifactId> |
|
<version>3.2</version> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-asm</artifactId> |
|
<version>${project.version}</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>log4j</groupId> |
|
<artifactId>log4j</artifactId> |
|
<scope>compile</scope> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.aspectj</groupId> |
|
<artifactId>aspectjweaver</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>junit</groupId> |
|
<artifactId>junit</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.easymock</groupId> |
|
<artifactId>easymock</artifactId> |
|
<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> |
|
</project>
|
|
|