forked from mkolisnyk/cucumber-reports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
56 lines (50 loc) · 1 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
apply plugin: 'java'
dependencies {
compile gradleApi()
}
sourceSets {
main {
java {
srcDir 'src/main/java'
}
resources {
srcDir 'src/main/resources'
}
}
test {
java {
srcDir 'src/test/java'
}
resources {
srcDir 'src/test/resources'
}
}
}
apply plugin: 'maven'
repositories {
//mavenLocal()
maven {
url 'C:/Maven-3.0.4/repo'
}
mavenLocal()
mavenCentral()
}
dependencies {
compile 'com.cedarsoftware:json-io:2.2.31'
compile 'info.cukes:cucumber-picocontainer:1.2.2'
compile 'info.cukes:cucumber-junit:1.2.2'
compile 'net.sourceforge.htmlunit:htmlunit:2.16'
compile 'junit:junit:4.11'
compile ('org.xhtmlrenderer:flying-saucer-pdf:9.0.7') {
exclude group: 'org.bouncycastle'
}
}
buildscript {
repositories {
maven {
url uri('C:/Maven-3.0.4/repo')
}
mavenLocal()
mavenCentral()
}
}