forked from Snagajob/alto-boot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
40 lines (34 loc) · 1006 Bytes
/
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
plugins {
id 'org.springframework.boot' version '1.5.6.RELEASE'
id 'io.franzbecker.gradle-lombok' version '1.10'
id 'java'
}
compileJava {
sourceCompatibility '1.8'
}
group 'alto'
version '1.0-SNAPSHOT'
springBoot {
mainClass = "AltoApplication"
}
lombok {
version = "1.16.18"
sha256 = ""
}
repositories {
mavenCentral()
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web:1.5.6.RELEASE")
compile("org.springframework.boot:spring-boot-starter-thymeleaf")
compile("org.springframework.boot:spring-boot-starter-data-jpa")
compile("org.flywaydb:flyway-core")
compile("org.postgresql:postgresql:42.1.4")
compile("cc.mallet:mallet:2.0.8")
compile("de.julielab:aliasi-lingpipe:4.1.0")
compile("commons-io:commons-io:2.6")
compile("org.jsoup:jsoup:1.10.3")
compile("com.google.code.gson:gson:2.8.2")
compile("com.google.guava:guava:24.0-jre")
testCompile group: 'junit', name: 'junit', version: '4.11'
}