Results 1 to 2 of 2

Thread: Tutorial for spring 1-5-9

  1. #1
    Join Date
    Aug 2010
    Posts
    1

    Default Tutorial for spring 1-5-9

    I am new to Spring Webservice. When I ran mvn package in tutorial directory then I received the error that :
    Reason: Unable to download the artifact from any repository

    org.springframework.ws:spring-ws-samplesom:1.5.9
    I checked maven repository there is no http://repo1.maven.org/maven2/org/sp...ples-1.5.9.pom.

    Any help would be appreciated.

  2. #2
    Join Date
    Nov 2004
    Location
    Dallas, TX USA
    Posts
    24

    Default

    You need to have the spring-ws-samples project built and available in your local maven repository. Run mvn install from the top level samples/ directory.

    For working with a milestone code base:
    Code:
    To use a milestone release, like 2.0-M3, add this repository to your parent/pom.xml in the source code
    <repositories>
             <repository>
                <id>spring-milestone</id>
                <name>Spring Milestone Repository</name>
                <url>http://maven.springframework.org/milestone</url>
            </repository>
      </repositories>
    -steve

Posting Permissions

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