-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
65 lines (52 loc) · 1.94 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
57
58
59
60
61
62
63
64
65
group 'vapals'
version '1.0-SNAPSHOT'
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'org.junit.platform:junit-platform-gradle-plugin:1.0.0'
}
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'org.junit.platform.gradle.plugin'
apply plugin: 'jacoco'
apply plugin: 'eclipse'
apply plugin: 'application'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
ext.junitLegacyVersion = '4.12'
ext.junitVintageVersion = '4.12.0'
ext.junitPlatformVersion = '1.0.0'
ext.junitJupiterVersion = '5.0.0'
ext.seleniumVersion = '3.5.3'
ext.expectItVersion = '0.8.3'
ext.jscVersion = '0.1.54'
mainClassName = 'com.paraxialtech.vapals.WebExpectTest'
dependencies {
testCompile "io.github.bonigarcia:webdrivermanager:1.7.1"
testCompile "org.seleniumhq.selenium:selenium-java:$seleniumVersion"
testCompile "org.seleniumhq.selenium:selenium-chrome-driver:$seleniumVersion"
testCompile "org.apache.commons:commons-lang3:3.6"
testCompile "org.apache.commons:commons-text:1.1"
//JUNIT 4
// testCompile("junit:junit:${junitLegacyVersion}")
// testRuntime("org.junit.vintage:junit-vintage-engine:${junitVintageVersion}")
//JUNIT 5
testCompile("org.junit.jupiter:junit-jupiter-api:${junitJupiterVersion}")
testCompile("org.junit.platform:junit-platform-runner:${junitPlatformVersion}")
testCompile("org.jsoup:jsoup:1.7.2")
testRuntime("org.junit.jupiter:junit-jupiter-engine:${junitJupiterVersion}")
// ExpectIt
testCompile("net.sf.expectit:expectit-core:${expectItVersion}")
testCompile("com.jcraft:jsch:${jscVersion}")
testRuntime("net.sf.expectit:expectit-core:${expectItVersion}")
testRuntime("com.jcraft:jsch:${jscVersion}")
compile("net.sf.expectit:expectit-core:${expectItVersion}")
compile("com.jcraft:jsch:${jscVersion}")
runtime("net.sf.expectit:expectit-core:${expectItVersion}")
runtime("com.jcraft:jsch:${jscVersion}")
}