This commit is contained in:
Arjen Poutsma
2010-02-26 11:19:11 +00:00
parent 2706fd039a
commit 9a392fbebc
3 changed files with 18 additions and 15 deletions

View File

@@ -58,21 +58,20 @@
<build>
<plugins>
<plugin>
<groupId>com.sun.tools.xjc.maven2</groupId>
<artifactId>maven-jaxb-plugin</artifactId>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>generate</goal>
<goal>xjc</goal>
</goals>
</execution>
</executions>
<configuration>
<generatePackage>org.springframework.ws.samples.mtom.schema</generatePackage>
<schemaDirectory>src/main/webapp/WEB-INF</schemaDirectory>
</configuration>
</plugin>
</executions>
<configuration>
<schemaDirectory>src/main/webapp/WEB-INF</schemaDirectory>
<packageName>org.springframework.ws.samples.mtom.schema</packageName>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
@@ -81,10 +80,5 @@
<groupId>org.springframework.ws</groupId>
<artifactId>spring-ws-core</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-oxm</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>

View File

@@ -30,5 +30,9 @@
<groupId>org.springframework.ws</groupId>
<artifactId>spring-ws-core</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.ws</groupId>
<artifactId>spring-xml</artifactId>
</dependency>
</dependencies>
</project>

View File

@@ -48,6 +48,10 @@
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<!-- Spring-WS dependencies -->
<dependency>
<groupId>org.springframework.ws</groupId>
@@ -56,6 +60,7 @@
<dependency>
<groupId>org.springframework.ws</groupId>
<artifactId>spring-ws-support</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>