-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
61 lines (50 loc) · 1.48 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 'trial'
version '1.0-SNAPSHOT'
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.2.RELEASE")
}
}
apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'org.springframework.boot'
apply plugin: 'idea'
sourceCompatibility = 1.8
jar {
manifest {
attributes ('Main-Class': 'app.chatbot.ChatApplication')
}
baseName = 'trial-gradle'
version = '0.1.0'
}
springBoot{
mainClass = "app.chatbot.ChatApplication"
}
repositories {
mavenCentral()
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web:1.5.2.RELEASE") {
exclude module: "logback-classic"
}
compile("org.springframework.boot:spring-boot-starter-actuator:1.5.2.RELEASE") {
exclude module: "logback-classic"
}
compile('org.springframework.boot:spring-boot-starter-data-jpa') {
exclude module: "logback-classic"
}
compile('org.springframework.boot:spring-boot-starter-thymeleaf') {
exclude module: "logback-classic"
}
compile('mysql:mysql-connector-java')
compile('org.apache.mahout:mahout-core:0.9')
compile('org.slf4j:slf4j-simple:1.7.7')
compile('com.andylibrian.jsastrawi:jsastrawi:0.1')
compile("org.projectlombok:lombok:1.16.16")
compile("org.javafunk:excel-parser:1.0")
compile("com.fasterxml.jackson.core:jackson-databind")
runtime 'net.sourceforge.nekohtml:nekohtml:1.9.15'
}