我在配置build.gradle时遇到问题,从svn存储库下载jar和pom。例如,我有网址:
https://svn.code.sf.net/p/springframework/svn/repos/repo-ext/javax/xml/crypto/xmldsig/1.0/
我希望这样做compile group: 'com.sun.xml.wss', name: 'xws-security', version: '3.0'
另外,手动下载是错误的。
UPD 这是后端项目的build.gradle文件
apply plugin: 'java'
dependencies {
compile group: 'org.glassfish.metro', name: 'wssx-api', version: '2.1.1-b09'
compile group: 'com.sun.xml.wss', name: 'xws-security', version: '3.0'
compile project(':pp-backend')
}
答案 0 :(得分:2)
如果您没有从maven central(默认情况下在Gradle中配置)下载,则应将存储库配置为使用“存储库”闭包进行下载:
repositories {
mavenCentral()
maven {
url 'https://svn.code.sf.net/p/springframework/svn/repos/repo-ext/'
}
}
然后,在'dependencies'闭包中,只需添加:
compile group: 'javax.xml.crypto', name: 'xmldsig', version: '1.0'
中查看更多信息