Should a 1.5.3 spring-ws maven archetype result in a pom.xml with 1.5.2 dependencies?
When I use maven to generate a spring web services archetype with
I get an artifact with a pom.xml that readsCode:mvn archetype:generate \ -DarchetypeGroupId=org.springframework.ws -DarchetypeArtifactId=spring-ws-archetype \ -DarchetypeVersion=1.5.3 -DgroupId=com.mytutorial -DartifactId=simpleWeb2
BrianCode:<?xml version="1.0" encoding="UTF-8"?> <project xmlns="--SNIPPED--" xmlns:xsi="--SNIPPED--" xsi:schemaLocation="--SNIPPED--"> <modelVersion>4.0.0</modelVersion> <groupId>com.mytutorial</groupId> <artifactId>simpleWeb2</artifactId> <packaging>war</packaging> <version>1.0-SNAPSHOT</version> <name>simpleWeb2 Spring-WS Application</name> <url>--SNIPPED--</url> <build> <finalName>simpleWeb2</finalName> </build> <dependencies> <dependency> <groupId>org.springframework.ws</groupId> <artifactId>spring-oxm</artifactId> <version>1.5.2</version> </dependency> <dependency> <groupId>org.springframework.ws</groupId> <artifactId>spring-ws-core</artifactId> <version>1.5.2</version> </dependency> </dependencies> </project>


Reply With Quote