2009-03-24 13:56:56 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2012-01-30 22:01:12 +08:00
|
|
|
<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">
|
2009-03-24 13:56:56 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-context-support</artifactId>
|
|
|
|
|
<packaging>jar</packaging>
|
2011-12-16 18:59:06 +08:00
|
|
|
<version>3.1.1.BUILD-SNAPSHOT</version>
|
2009-03-25 16:06:34 +08:00
|
|
|
<parent>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
2009-03-29 17:56:38 +08:00
|
|
|
<artifactId>spring-parent</artifactId>
|
|
|
|
|
<relativePath>../org.springframework.spring-parent</relativePath>
|
2011-12-16 18:59:06 +08:00
|
|
|
<version>3.1.1.BUILD-SNAPSHOT</version>
|
2009-03-25 16:06:34 +08:00
|
|
|
</parent>
|
2012-01-30 22:01:12 +08:00
|
|
|
<licenses>
|
|
|
|
|
<license>
|
|
|
|
|
<name>The Apache Software License, Version 2.0</name>
|
|
|
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
|
</license>
|
|
|
|
|
</licenses>
|
2009-03-24 13:56:56 +08:00
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.bea.commonj</groupId>
|
2009-03-25 16:06:34 +08:00
|
|
|
<artifactId>com.springsource.commonj</artifactId>
|
|
|
|
|
<version>1.1.0</version>
|
2009-03-24 13:56:56 +08:00
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
2009-03-28 09:41:11 +08:00
|
|
|
<dependency>
|
2009-07-10 03:38:07 +08:00
|
|
|
<groupId>opensymphony</groupId>
|
2009-03-28 09:41:11 +08:00
|
|
|
<artifactId>quartz</artifactId>
|
|
|
|
|
<version>1.6.2</version>
|
2009-03-29 17:56:38 +08:00
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
2009-10-28 03:24:15 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>hsqldb</groupId>
|
|
|
|
|
<artifactId>hsqldb</artifactId>
|
|
|
|
|
<version>1.8.0.10</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2009-03-24 13:56:56 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.activation</groupId>
|
2009-03-25 16:06:34 +08:00
|
|
|
<artifactId>activation</artifactId>
|
2009-03-24 13:56:56 +08:00
|
|
|
<version>1.1</version>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.mail</groupId>
|
2009-03-25 16:06:34 +08:00
|
|
|
<artifactId>mail</artifactId>
|
2009-03-24 13:56:56 +08:00
|
|
|
<version>1.4</version>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2009-03-25 16:06:34 +08:00
|
|
|
<groupId>jasperreports</groupId>
|
|
|
|
|
<artifactId>jasperreports</artifactId>
|
2009-03-24 13:56:56 +08:00
|
|
|
<version>2.0.5</version>
|
|
|
|
|
<optional>true</optional>
|
2009-08-06 01:41:54 +08:00
|
|
|
<exclusions>
|
2012-01-30 22:01:12 +08:00
|
|
|
<exclusion>
|
|
|
|
|
<groupId>bouncycastle</groupId>
|
|
|
|
|
<artifactId>bctsp-jdk14</artifactId>
|
|
|
|
|
</exclusion>
|
2009-08-06 01:41:54 +08:00
|
|
|
</exclusions>
|
2009-03-24 13:56:56 +08:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-collections</groupId>
|
|
|
|
|
<artifactId>commons-collections</artifactId>
|
|
|
|
|
<version>3.2</version>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
2009-09-25 13:16:55 +08:00
|
|
|
<!-- common logging dependency is in spring-core -->
|
2009-03-24 13:56:56 +08:00
|
|
|
<dependency>
|
2009-03-25 16:06:34 +08:00
|
|
|
<groupId>velocity</groupId>
|
|
|
|
|
<artifactId>velocity</artifactId>
|
2009-03-24 13:56:56 +08:00
|
|
|
<version>1.5</version>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
2009-03-28 09:41:11 +08:00
|
|
|
<dependency>
|
2009-09-24 14:09:54 +08:00
|
|
|
<groupId>org.freemarker</groupId>
|
|
|
|
|
<artifactId>freemarker</artifactId>
|
|
|
|
|
<version>2.3.15</version>
|
2009-03-28 09:41:11 +08:00
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
2009-03-24 13:56:56 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-beans</artifactId>
|
2009-03-29 17:56:38 +08:00
|
|
|
<version>${project.version}</version>
|
2009-03-24 13:56:56 +08:00
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-context</artifactId>
|
2009-03-29 17:56:38 +08:00
|
|
|
<version>${project.version}</version>
|
2009-03-24 13:56:56 +08:00
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-core</artifactId>
|
2009-03-29 17:56:38 +08:00
|
|
|
<version>${project.version}</version>
|
2009-03-24 13:56:56 +08:00
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-jdbc</artifactId>
|
2009-03-29 17:56:38 +08:00
|
|
|
<version>${project.version}</version>
|
2009-03-24 13:56:56 +08:00
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-tx</artifactId>
|
2009-03-29 17:56:38 +08:00
|
|
|
<version>${project.version}</version>
|
2009-03-24 13:56:56 +08:00
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
2009-03-25 16:06:34 +08:00
|
|
|
<artifactId>poi</artifactId>
|
|
|
|
|
<version>3.0.2-FINAL</version>
|
2009-03-24 13:56:56 +08:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.easymock</groupId>
|
|
|
|
|
<artifactId>easymock</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
<build>
|
2009-03-28 09:41:11 +08:00
|
|
|
<testResources>
|
|
|
|
|
<testResource>
|
2009-03-29 17:56:38 +08:00
|
|
|
<directory>${pom.build.sourceDirectory}</directory>
|
2009-03-28 09:41:11 +08:00
|
|
|
<includes>
|
|
|
|
|
<include>**/*.types</include>
|
|
|
|
|
</includes>
|
|
|
|
|
</testResource>
|
|
|
|
|
</testResources>
|
2009-03-24 13:56:56 +08:00
|
|
|
</build>
|
2009-03-25 16:06:34 +08:00
|
|
|
</project>
|