Results 1 to 4 of 4

Thread: Spring WS 2.0.3 Ariline Sample Maven Build Error

  1. #1
    Join Date
    May 2011
    Posts
    21

    Default Spring WS 2.0.3 Ariline Sample Maven Build Error

    Hi Guys,

    I tried to build the airline sample project using maven and I got the following errors;

    12/4/11 7:09:56 PM GMT: Missing artifact com.sun.xml.wsit:xws-security:jar:1.3.1:compile
    12/4/11 7:09:56 PM GMT: Missing artifact com.sun.xml.wsit:wsit-rt:jar:1.1:compile

    I had a look at

    https://springframework.svn.sourcefo...epos/repo-ext/

    but could not find either of these jars. Can someone point me in the right direction please.

  2. #2
    Join Date
    Jun 2011
    Posts
    23

    Default

    Hi,

    I've got the same problem.
    I'm using Maven 3.

    Which repository should we use ?

  3. #3
    Join Date
    Jun 2009
    Posts
    5

    Cool

    I also got the errors.
    so I created a JIRA issue.
    https://jira.springsource.org/browse/SWS-757

  4. #4
    Join Date
    Jun 2012
    Posts
    3

    Default

    I was able to find those jar files online and download into my local repo:
    http://www.mvnsearch.org/maven2/com/...ecurity/1.3.1/

    http://www.mvnsearch.org/maven2/com/...t/wsit-rt/1.1/

    I downloaded, then ran the following:

    Code:
    mvn install:install-file -Dfile=/Users/xxxx/Downloads/wsit-rt-1.1.jar  -DgroupId=com.sun.xml.wsit -DartifactId=wsit-rt -Dversion=1.1 -Dpackaging=jar
    
     mvn install:install-file -Dfile=/Users/xxxx/Downloads/xws-security-1.3.1.jar  -DgroupId=com.sun.xml.wsit -DartifactId=xws-security -Dversion=1.3.1 -Dpackaging=jar
    This seems to have fixed this error.

    I now have other errors, as documented here: http://forum.springsource.org/showth...hlight=airline

Posting Permissions

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