forked from uniba-dsg/betsy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
39 lines (31 loc) · 810 Bytes
/
build.gradle
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
31
32
33
34
35
36
37
38
39
apply plugin: "groovy"
apply plugin: "java"
apply plugin: "idea"
apply plugin: "eclipse"
apply plugin: "application"
mainClassName = "configuration.TestUsingParameters"
repositories {
mavenCentral()
}
sourceSets {
main {
groovy {
srcDir 'src/main/groovy'
srcDir 'src/main/tests'
}
}
}
dependencies {
groovy 'org.codehaus.groovy:groovy-all:2.0.0'
compile 'org.apache.ant:ant:1.8.3'
compile files(fileTree(dir: 'C:\\Program Files\\SmartBear\\soapUI-4.5.0\\lib', includes: ['*.jar']))
compile files(fileTree(dir: 'C:\\Program Files\\SmartBear\\soapUI-4.5.0\\bin', includes: ['*.jar']))
}
task wrapper(type: Wrapper) {
gradleVersion = '1.0'
}
run {
if(project.hasProperty('args')){
args project.args.split('\\s+')
}
}