You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
414 B
12 lines
414 B
// NOTE: This is not used during the actual build. Added to conveniently import into intellij
|
|
apply plugin: 'java'
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
def jacocoVersion = "0.7.2.201409121644"
|
|
dependencies {
|
|
compile files("lib/asm-debug-all-5.0.1.jar")
|
|
compile files("lib/org.jacoco.core-${jacocoVersion}.jar", "lib/org.jacoco.report-${jacocoVersion}.jar")
|
|
compile files("../commons-cli/commons-cli-1.2.jar")
|
|
}
|