Gradle的新手,我尝试将maven替换为构建工具。 我已经将Jsoup添加为gradle中的依赖项,并尝试将其下载,但不会将其下载到项目中。
这是我的build.gradle:
apply plugin: 'java'
repositories {
//jcenter()
mavenCentral()
}
dependencies {
compile ('org.jsoup:jsoup:1.7.2')
compile 'org.slf4j:slf4j-api:1.7.12'
testCompile 'junit:junit:4.12'
}
Jsoup没有下载,没有在输出中显示,我也无法使用它。但是,它将在没有问题的情况下在maven中下载。
我错过了什么吗?