pom.xml 3.4 KB
Newer Older
1 2 3 4 5 6
<?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>
D
David Syer 已提交
7
  <version>3.0.3.BUILD-SNAPSHOT</version>
8 9
  <parent>
    <groupId>org.springframework</groupId>
M
Mark Pollack 已提交
10 11
    <artifactId>spring-parent</artifactId>
    <relativePath>../org.springframework.spring-parent</relativePath>
D
David Syer 已提交
12
    <version>3.0.3.BUILD-SNAPSHOT</version>
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
  </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>
40
    <!-- common logging dependency is in spring-core -->
41 42 43
    <dependency>
      <groupId>commons-pool</groupId>
      <artifactId>commons-pool</artifactId>
C
Costin Leau 已提交
44
      <version>1.5.3</version>
45 46 47 48 49
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>org.easymock</groupId>
      <artifactId>easymock</artifactId>
50
      <scope>test</scope>
51 52 53 54
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
55
      <scope>test</scope>
56 57 58 59
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-aop</artifactId>
C
Costin Leau 已提交
60
      <version>${project.version}</version>
61 62 63 64 65
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-beans</artifactId>
C
Costin Leau 已提交
66
      <version>${project.version}</version>
67 68 69 70 71
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-context</artifactId>
C
Costin Leau 已提交
72
      <version>${project.version}</version>
73 74 75 76 77
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-core</artifactId>
C
Costin Leau 已提交
78
      <version>${project.version}</version>
79 80 81 82 83
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-oxm</artifactId>
C
Costin Leau 已提交
84
      <version>${project.version}</version>
85 86 87 88 89
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-tx</artifactId>
C
Costin Leau 已提交
90
      <version>${project.version}</version>
91
      <scope>compile</scope>
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
    </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>