我正在尝试使用 Sonar 进行的静态代码分析来获得一个简单的 Gradle 项目(由 eclipse 自动创建的项目),以在我们的持续集成上运行。我们的 CI 服务器位于代理后面,我必须通过内部 Nexus 服务器访问 Gradle 插件存储库。
如用户指南中所述,我已将以下内容添加到我的settings.gradle
pluginRepositories {
maven {
url 'http://link.to.my.nexus'
}
gradlePluginPortal()
}
rootProject.name = 'GradleTestProject'
我的 build.gradle 看起来像这样:
plugins {
id "org.sonarqube" version "2.0.1"
}
apply plugin: 'java'
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
compile 'org.slf4j:slf4j-api:1.7.21'
testCompile 'junit:junit:4.12'
}
当我在 Jenkins 上运行它时,我收到以下错误消息:
FAILURE: Build failed with an exception.
* Where:
Settings file '/opt/hudson/jobs/GradleTestProject/workspace/settings.gradle' line: 1
* What went wrong:
A problem occurred evaluating settings 'workspace'.
> Could not find method pluginRepositories() for arguments [settings_20tc2o9xuj82hi1fvpe4wvcvt$_run_closure1@52b56c40] on settings 'workspace'.
我看过网上的其他例子。他们都按照我描述的方式进行操作。
顺便说一句:我正在使用 Gradle 2.12