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.
84 lines
2.6 KiB
84 lines
2.6 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-aspects</artifactId> |
|
<packaging>jar</packaging> |
|
<version>3.0.0.BUILD-SNAPSHOT</version> |
|
<parent> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-parent</artifactId> |
|
<relativePath>../org.springframework.spring-parent</relativePath> |
|
<version>3.0.0.BUILD-SNAPSHOT</version> |
|
</parent> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>commons-logging</groupId> |
|
<artifactId>commons-logging</artifactId> |
|
<version>1.1.1</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.aspectj</groupId> |
|
<artifactId>aspectjweaver</artifactId> |
|
<version>1.6.2</version> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-beans</artifactId> |
|
<version>${project.version}</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-tx</artifactId> |
|
<version>${project.version}</version> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-context</artifactId> |
|
<version>${project.version}</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-context-support</artifactId> |
|
<version>${project.version}</version> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-test</artifactId> |
|
<version>${project.version}</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>junit</groupId> |
|
<artifactId>junit</artifactId> |
|
<version>4.6</version> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>javax.mail</groupId> |
|
<artifactId>mail</artifactId> |
|
<version>1.4</version> |
|
<optional>true</optional> |
|
</dependency> |
|
</dependencies> |
|
<build> |
|
<pluginManagement> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-surefire-plugin</artifactId> |
|
<configuration> |
|
<junitArtifactName>junit:junit</junitArtifactName> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</pluginManagement> |
|
</build> |
|
</project>
|
|
|