加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.gradle 1.30 KB
一键复制 编辑 原始数据 按行查看 历史
plugins {
id "org.jetbrains.intellij" version "0.2.0"
}
apply plugin: 'org.jetbrains.intellij'
intellij {
version '2016.1'
updateSinceUntilBuild false
pluginName 'jenkins-control-plugin'
}
configurations {
provided
}
sourceSets {
main {
java {
compileClasspath += configurations.provided
runtimeClasspath += configurations.provided
}
resources {
}
}
test {
java {
compileClasspath += configurations.provided
runtimeClasspath += configurations.provided
}
resources {
}
}
}
repositories {
mavenCentral()
}
dependencies {
compile 'com.googlecode.json-simple:json-simple:1.1.1'
compile ('com.offbytwo.jenkins:jenkins-client:0.3.7') {
exclude group: 'org.slf4j'
exclude group: 'org.apache.logging.log4j'
}
testCompile 'junit:junit:4.10'
testCompile 'org.mockito:mockito-all:1.8.5'
testCompile 'org.easytesting:fest-swing:1.2'
testCompile 'org.easytesting:fest-util:1.1.3'
testCompile 'org.unitils:unitils-core:3.3'
}
test {
doFirst {
systemProperty("idea.plugins.path", project.rootDir.canonicalPath + "/.test-plugins")
}
testLogging {
exceptionFormat = 'full'
showStandardStreams = true
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化