-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (24 loc) · 1.05 KB
/
Copy pathbuild.gradle
File metadata and controls
37 lines (24 loc) · 1.05 KB
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
group 'io.github.ylbfdev'
version '1.0-SNAPSHOT'
apply plugin: 'java'
task wrapper(type: Wrapper) {
gradleVersion = '2.13'
distributionUrl = "https://services.gradle.org/distributions/gradle-$gradleVersion-all.zip"
}
sourceCompatibility = 1.8
repositories {
mavenCentral()
jcenter { url "http://jcenter.bintray.com/" }
maven { url "http://mirrors.ibiblio.org/pub/mirrors/maven2" }
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
// https://mvnrepository.com/artifact/log4j/log4j
compile group: 'log4j', name: 'log4j', version: '1.2.17'
// https://mvnrepository.com/artifact/org.seleniumhq.selenium/htmlunit-driver
compile group: 'org.seleniumhq.selenium', name: 'htmlunit-driver', version: '2.23.2'
// https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java
compile group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '3.0.1'
// https://mvnrepository.com/artifact/net.iharder/base64
compile group: 'net.iharder', name: 'base64', version: '2.3.9'
}