Results 1 to 3 of 3

Thread: spring-ws-archetype -DarchetypeVersion=1.5.3 but pom 1.5.2

  1. #1
    Join Date
    Jun 2008
    Posts
    4

    Default spring-ws-archetype -DarchetypeVersion=1.5.3 but pom 1.5.2

    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

    Code:
    mvn archetype:generate \
    -DarchetypeGroupId=org.springframework.ws -DarchetypeArtifactId=spring-ws-archetype \
    -DarchetypeVersion=1.5.3 -DgroupId=com.mytutorial -DartifactId=simpleWeb2
    I get an artifact with a pom.xml that reads

    Code:
    <?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>
    Brian

  2. #2

    Default

    I created a jira issue for this
    http://jira.springframework.org/browse/SWS-405
    Tareq Abedrabbo

    My Twitter
    My Blog

  3. #3
    Join Date
    Jun 2008
    Posts
    4

    Default

    Hi Tareq,

    I just updated the JIRA issue SWS-405. I'm still having artifact version problems with both 1.5.4 and 1.5.3.

    Brian

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •