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.
107 lines
3.4 KiB
107 lines
3.4 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-jms</artifactId> |
|
<packaging>jar</packaging> |
|
<version>3.0.8.BUILD-SNAPSHOT</version> |
|
<parent> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-parent</artifactId> |
|
<relativePath>../org.springframework.spring-parent</relativePath> |
|
<version>3.0.8.BUILD-SNAPSHOT</version> |
|
</parent> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>org.apache.geronimo.specs</groupId> |
|
<artifactId>geronimo-jms_1.1_spec</artifactId> |
|
<version>1.1</version> |
|
<scope>provided</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>javax.resource</groupId> |
|
<artifactId>connector-api</artifactId> |
|
<version>1.5</version> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.geronimo.specs</groupId> |
|
<artifactId>geronimo-jta_1.1_spec</artifactId> |
|
<version>1.1</version> |
|
<scope>provided</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>aopalliance</groupId> |
|
<artifactId>aopalliance</artifactId> |
|
<version>1.0</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
<!-- common logging dependency is in spring-core --> |
|
<dependency> |
|
<groupId>commons-pool</groupId> |
|
<artifactId>commons-pool</artifactId> |
|
<version>1.5.3</version> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.easymock</groupId> |
|
<artifactId>easymock</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>junit</groupId> |
|
<artifactId>junit</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-aop</artifactId> |
|
<version>${project.version}</version> |
|
<scope>compile</scope> |
|
</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-context</artifactId> |
|
<version>${project.version}</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-core</artifactId> |
|
<version>${project.version}</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-oxm</artifactId> |
|
<version>${project.version}</version> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-tx</artifactId> |
|
<version>${project.version}</version> |
|
<scope>compile</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>
|
|
|