update maven POMs to support compilation and running of tests

This commit is contained in:
Mark Pollack
2009-03-27 06:59:08 +00:00
parent f07caa7d7c
commit f17a43a5ea
16 changed files with 843 additions and 106 deletions

View File

@@ -5,13 +5,25 @@
<artifactId>spring-integration-xml</artifactId>
<packaging>jar</packaging>
<name>Spring Integration XML Support</name>
<version>1.0.2.RELEASE</version>
<parent>
<groupId>org.springframework.integration</groupId>
<artifactId>spring-integration-parent</artifactId>
<version>1.0.2.RELEASE</version>
<relativePath>../spring-integration-parent</relativePath>
</parent>
<dependencies>
<!--
<dependency>
<groupId>com.sun.xml</groupId>
<artifactId>com.sun.xml.bind</artifactId>
<version>2.1.7</version>
<scope>test</scope>
</dependency>
-->
<dependency>
<!-- 1.1.1 is in S2 bundle repository, but it is not in apache maven central repo. -->
<groupId>javax.activation</groupId>
<artifactId>activation</artifactId>
<version>1.1</version>
<version>1.1.1</version>
<scope>provided</scope>
</dependency>
<dependency>
@@ -27,20 +39,72 @@
<version>1.2.0</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
<version>1.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>2.5.6</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>2.5.6</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.integration</groupId>
<artifactId>spring-integration-core</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.ws</groupId>
<artifactId>spring-oxm-tiger</artifactId>
<version>1.5.5</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.ws</groupId>
<artifactId>spring-oxm</artifactId>
<version>1.5.5</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<testResources>
<testResource>
<directory>src/test/java</directory>
<includes>
<include>**/*.xml</include>
<include>**/*.xsl</include>
<include>**/*.xsd</include>
</includes>
</testResource>
<testResource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xsd</include>
</includes>
</testResource>
<testResource>
<directory>../org.springframework.integration/src/main/java</directory>
<includes>
<include>**/*.xsd</include>
</includes>
</testResource>
</testResources>
</build>
</project>