且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Maven找不到依赖项

更新时间:2022-01-08 02:55:43

查看中间存储库

如果你搜索spring-ws,你会发现看看你的pom.xml中只有一个pom文件可供下载。

If you do a search for spring-ws you'll see that there is only a pom file available for download for what you precisely specified in your pom.xml.

看起来你可能想要使用spring-ws-core所以:

Looks like you might want to use spring-ws-core like so:

        <dependency>
        <groupId>org.springframework.ws</groupId>
        <artifactId>spring-ws-core</artifactId>
        <version>2.1.4.RELEASE</version>
    </dependency>