forked from sbueringer/kubecon-slides
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
35 lines (28 loc) · 1.06 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
apply plugin: 'java'
apply plugin: 'maven'
group = 'com.sbueringer'
version = '1.0-SNAPSHOT'
description = """download-helper"""
sourceCompatibility = 1.8
targetCompatibility = 1.8
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
// task execute(type:JavaExec) {
// main = mainClass
// classpath = sourceSets.main.runtimeClasspath
// }
apply plugin:'application'
mainClassName = "com.sbueringer.kubecon.SlideDownloader"
repositories {
maven { url "http://repo.maven.apache.org/maven2" }
}
dependencies {
compile group: 'org.seleniumhq.selenium', name: 'selenium-chrome-driver', version:'3.11.0'
compile group: 'org.seleniumhq.selenium', name: 'selenium-htmlunit-driver', version:'2.52.0'
compile group: 'com.sun.jersey', name: 'jersey-client', version:'1.8'
compile group: 'org.jsoup', name: 'jsoup', version:'1.8.3'
compile group: 'net.htmlparser.jericho', name: 'jericho-html', version:'3.3'
compile group: 'com.google.code.gson', name: 'gson', version:'2.6.2'
testCompile group: 'junit', name: 'junit', version:'4.9'
}