-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
61 lines (43 loc) · 1.91 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
group 'com.github.sobryan'
version '1.0-SNAPSHOT'
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.8.RELEASE")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
jar {
baseName = 'news-scrapper'
version = '0.1.0'
}
repositories {
mavenCentral()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
compile("org.springframework.boot:spring-boot-starter-data-jpa")
// https://mvnrepository.com/artifact/com.h2database/h2
compile group: 'com.h2database', name: 'h2', version: '1.4.196'
compile group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '3.7.1'
compile group: 'org.seleniumhq.selenium', name: 'selenium-api', version: '3.7.1'
compile group: 'org.seleniumhq.selenium', name: 'selenium-support', version: '3.7.1'
compile group: 'org.seleniumhq.selenium', name: 'selenium-chrome-driver', version: '3.7.1'
compile group: 'org.seleniumhq.selenium', name: 'selenium-remote-driver', version: '3.7.1'
compile group: 'org.seleniumhq.selenium', name: 'selenium-firefox-driver', version: '3.7.1'
// https://mvnrepository.com/artifact/org.seleniumhq.selenium/htmlunit-driver
compile group: 'org.seleniumhq.selenium', name: 'htmlunit-driver', version: '2.28.1'
// https://mvnrepository.com/artifact/org.apache.commons/commons-pool2
compile group: 'org.apache.commons', name: 'commons-pool2', version: '2.4.3'
// https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-server
compile group: 'org.seleniumhq.selenium', name: 'selenium-server', version: '3.7.1'
// https://mvnrepository.com/artifact/org.postgresql/postgresql
compile group: 'org.postgresql', name: 'postgresql', version: '42.1.4'
testCompile group: 'junit', name: 'junit', version: '4.11'
}