240 lines
8.9 KiB
XML
240 lines
8.9 KiB
XML
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
<parent>
|
|
<artifactId>spring-ws</artifactId>
|
|
<groupId>org.springframework.ws</groupId>
|
|
<version>1.0.5-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>spring-oxm</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>Spring O/X Mapping</name>
|
|
<description>Spring Object/XML Mapping abstraction</description>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>generate-test-sources</id>
|
|
<phase>generate-test-sources</phase>
|
|
<configuration>
|
|
<tasks>
|
|
<ant antfile="${basedir}/build-maven2.xml" inheritRefs="true">
|
|
<property name="maven.test.skip" value="${maven.test.skip}" />
|
|
<target name="generate-test-sources" />
|
|
</ant>
|
|
</tasks>
|
|
<testSourceRoot>${project.build.directory}/generated-sources/test/java</testSourceRoot>
|
|
</configuration>
|
|
<goals>
|
|
<goal>run</goal>
|
|
</goals>
|
|
</execution>
|
|
<execution>
|
|
<id>test-compile</id>
|
|
<phase>test-compile</phase>
|
|
<configuration>
|
|
<tasks>
|
|
<ant antfile="${basedir}/build-maven2.xml" inheritRefs="true">
|
|
<property name="maven.test.skip" value="${maven.test.skip}" />
|
|
<target name="test-compile" />
|
|
</ant>
|
|
</tasks>
|
|
</configuration>
|
|
<goals>
|
|
<goal>run</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.codehaus.castor</groupId>
|
|
<artifactId>castor-codegen-anttask</artifactId>
|
|
<version>1.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<reporting>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<configuration>
|
|
<stylesheetfile>${basedir}/../src/main/javadoc/javadoc.css</stylesheetfile>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</reporting>
|
|
<dependencies>
|
|
<!-- Spring-WS dependencies -->
|
|
<dependency>
|
|
<groupId>org.springframework.ws</groupId>
|
|
<artifactId>spring-xml</artifactId>
|
|
</dependency>
|
|
<!-- XML handling dependencies -->
|
|
<dependency>
|
|
<groupId>xml-apis</groupId>
|
|
<artifactId>xml-apis</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>stax</groupId>
|
|
<artifactId>stax-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.codehaus.woodstox</groupId>
|
|
<artifactId>wstx-asl</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>xpp3</groupId>
|
|
<artifactId>xpp3</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>xerces</groupId>
|
|
<artifactId>xercesImpl</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- O/X Mapping dependencies --><!-- Castor -->
|
|
<dependency>
|
|
<groupId>org.codehaus.castor</groupId>
|
|
<artifactId>castor</artifactId>
|
|
<optional>true</optional>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>adaptx</groupId>
|
|
<artifactId>adaptx</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>ant</groupId>
|
|
<artifactId>ant</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>cglib</groupId>
|
|
<artifactId>cglib-full</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>com.cenqua.clover</groupId>
|
|
<artifactId>clover</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>oro</groupId>
|
|
<artifactId>oro</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>jakarta-regexp</groupId>
|
|
<artifactId>jakarta-regexp</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>servlet-api</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>javax.transaction</groupId>
|
|
<artifactId>jta</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>ldapsdk</groupId>
|
|
<artifactId>ldapsdk</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>log4j</groupId>
|
|
<artifactId>log4j</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>xerces</groupId>
|
|
<artifactId>xerces</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<!-- JAXB -->
|
|
<dependency>
|
|
<groupId>javax.xml.bind</groupId>
|
|
<artifactId>jaxb-api</artifactId>
|
|
<version>1.0</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sun.xml.bind</groupId>
|
|
<artifactId>jaxb-impl</artifactId>
|
|
<version>1.0.6</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sun.xml.bind</groupId>
|
|
<artifactId>jaxb-libs</artifactId>
|
|
<version>1.0.6</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sun.xml.bind</groupId>
|
|
<artifactId>jaxb-xjc</artifactId>
|
|
<version>1.0.6</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sun.msv.datatype.xsd</groupId>
|
|
<artifactId>xsdlib</artifactId>
|
|
<version>20060615</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>isorelax</groupId>
|
|
<artifactId>isorelax</artifactId>
|
|
<version>20030108</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>relaxngDatatype</groupId>
|
|
<artifactId>relaxngDatatype</artifactId>
|
|
<version>20020414</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<!-- XMLBeans -->
|
|
<dependency>
|
|
<groupId>xmlbeans</groupId>
|
|
<artifactId>xbean</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<!-- JiBX -->
|
|
<dependency>
|
|
<groupId>org.jibx</groupId>
|
|
<artifactId>jibx-run</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jibx</groupId>
|
|
<artifactId>jibx-bind</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>bcel</groupId>
|
|
<artifactId>bcel</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<!-- XStream -->
|
|
<dependency>
|
|
<groupId>com.thoughtworks.xstream</groupId>
|
|
<artifactId>xstream</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<!-- JEE dependencies -->
|
|
<dependency>
|
|
<groupId>javax.activation</groupId>
|
|
<artifactId>activation</artifactId>
|
|
<version>1.1</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<!-- Test dependencies -->
|
|
<dependency>
|
|
<groupId>easymock</groupId>
|
|
<artifactId>easymock</artifactId>
|
|
<version>1.2_Java1.3</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|