-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
33 lines (28 loc) · 1.39 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
apply plugin: 'java'
apply plugin: 'eclipse'
repositories {
mavenCentral()
}
dependencies {
def withoutGuava = { exclude group: 'com.google.guava', module: 'guava' }
compile group: 'io.cucumber', name: 'cucumber-junit', version: '2.0.1', withoutGuava
compile group: 'io.cucumber', name: 'cucumber-java', version: '2.0.1', withoutGuava
compile 'org.dbunit:dbunit:2.5.4', withoutGuava
compile 'junit:junit:4.12', withoutGuava
compile group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '3.6.0'
compile group: 'org.seleniumhq.selenium', name: 'selenium-support', version: '3.6.0' // Support the old api for webdriver wait
compile group: 'org.jboss.weld.se', name: 'weld-se-core', version: '2.4.5.Final', withoutGuava
compile group: 'org.jboss', name: 'jandex', version: '2.0.3.Final', withoutGuava
compile group: 'io.github.lukehutch', name: 'fast-classpath-scanner', version: '2.7.2'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.4', withoutGuava // Used by FusionBean Class
compile group: 'commons-io', name: 'commons-io', version: '2.5', withoutGuava // Used by Fusion Class
testCompile group: 'org.mockito', name: 'mockito-all', version: '1.10.19', withoutGuava
}
sourceCompatibility = 1.8
version = '1.0.0'
jar {
manifest {
attributes 'Implementation-Title' : 'Fusion',
'Implementation-Version' : version
}
}