-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
30 lines (26 loc) · 787 Bytes
/
build.gradle
File metadata and controls
30 lines (26 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
subprojects {
apply plugin: 'java'
version = '0.1-SNAPSHOT'
repositories {
mavenCentral()
}
configurations {
provided
}
dependencies {
compile('commons-lang:commons-lang:2.5')
testCompile('org.testng:testng:6.8', 'org.easymock:easymock:3.1')
provided files(intellij11LibDir + "idea.jar",
intellij11LibDir + "openapi.jar",
intellij11LibDir + "forms_rt.jar",
intellij11LibDir + "util.jar",
intellij11LibDir + "jdom.jar",
intellij11LibDir + "extensions.jar",
intellij11LibDir + "annotations.jar")
}
sourceSets {
main.compileClasspath += configurations.provided
test.compileClasspath += configurations.provided
test.runtimeClasspath += configurations.provided
}
}