-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
35 lines (28 loc) · 1.13 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
plugins {
id 'java'
id 'application'
}
group 'com.internhub.data'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile group: 'net.dean.jraw', name: 'JRAW', version: '1.1.0'
compile group: 'org.jsoup', name: 'jsoup', version: '1.11.3'
compile group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '3.141.59'
compile group: 'org.seleniumhq.selenium', name: 'selenium-support', version: '3.141.59'
compile group: 'org.hibernate', name: 'hibernate-core', version: '5.4.2.Final'
compile group: 'org.apache.commons', name: 'commons-text', version: '1.6'
compile group: 'mysql', name: 'mysql-connector-java', version: '8.0.16'
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.26'
compile group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
compile group: 'commons-cli', name: 'commons-cli', version: '1.4'
compile group: 'fastily', name: 'jwiki', version: '1.7.0'
testCompile group: 'junit', name: 'junit', version: '4.12'
}
application {
mainClassName = 'com.internhub.data.Main'
}