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.
147 lines
4.4 KiB
147 lines
4.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-context-support</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>com.bea.commonj</groupId> |
|
<artifactId>com.springsource.commonj</artifactId> |
|
<version>1.1.0</version> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>opensymphony</groupId> |
|
<artifactId>quartz</artifactId> |
|
<version>1.6.2</version> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>hsqldb</groupId> |
|
<artifactId>hsqldb</artifactId> |
|
<version>1.8.0.10</version> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>javax.activation</groupId> |
|
<artifactId>activation</artifactId> |
|
<version>1.1</version> |
|
<scope>provided</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>javax.mail</groupId> |
|
<artifactId>mail</artifactId> |
|
<version>1.4</version> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>net.sf.ehcache</groupId> |
|
<artifactId>ehcache</artifactId> |
|
<version>1.6.2</version> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>jasperreports</groupId> |
|
<artifactId>jasperreports</artifactId> |
|
<version>2.0.5</version> |
|
<optional>true</optional> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>bouncycastle</groupId> |
|
<artifactId>bctsp-jdk14</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>commons-collections</groupId> |
|
<artifactId>commons-collections</artifactId> |
|
<version>3.2</version> |
|
<optional>true</optional> |
|
</dependency> |
|
<!-- common logging dependency is in spring-core --> |
|
<dependency> |
|
<groupId>velocity</groupId> |
|
<artifactId>velocity</artifactId> |
|
<version>1.5</version> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.freemarker</groupId> |
|
<artifactId>freemarker</artifactId> |
|
<version>2.3.15</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-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-jdbc</artifactId> |
|
<version>${project.version}</version> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-tx</artifactId> |
|
<version>${project.version}</version> |
|
<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> |
|
<artifactId>poi</artifactId> |
|
<version>3.0.2-FINAL</version> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.easymock</groupId> |
|
<artifactId>easymock</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
</dependencies> |
|
|
|
<build> |
|
<testResources> |
|
<testResource> |
|
<directory>${pom.build.sourceDirectory}</directory> |
|
<includes> |
|
<include>**/*.types</include> |
|
</includes> |
|
</testResource> |
|
</testResources> |
|
</build> |
|
</project>
|
|
|