-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
70 lines (60 loc) · 2.08 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
62
63
64
65
66
67
68
69
70
/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
id 'java-library'
id 'maven-publish'
}
repositories {
mavenCentral()
maven {
url = uri('https://repo.maven.apache.org/maven2/')
}
}
dependencies {
api 'org.springframework.boot:spring-boot-starter-jdbc:2.3.1.RELEASE'
implementation ("org.springframework.boot:spring-boot-starter-actuator")
implementation ("org.springframework.boot:spring-boot-starter-web")
implementation ("org.springframework.boot:spring-boot-starter-data-jpa")
implementation ("org.springframework.boot:spring-boot-starter-validation")
implementation ("org.springframework.boot:spring-boot-starter-batch")
implementation 'com.github.ulisesbocchio:jasypt-spring-boot-starter:3.0.4'
implementation 'org.apache.httpcomponents:httpclient:4.5.13'
api 'org.apache.tomcat.embed:tomcat-embed-jasper:9.0.36'
api 'com.google.code.gson:gson:2.8.9'
api 'org.codehaus.jettison:jettison:1.5.4'
api 'com.vaadin.external.google:android-json:0.0.20131108.vaadin1'
api 'org.mybatis:mybatis-spring:2.0.1'
api 'org.mybatis:mybatis:3.5.6'
api 'org.apache.poi:poi-ooxml:4.1.1'
api 'net.sf.jxls:jxls-core:1.0.6'
api 'javax.mail:mail:1.4'
api 'org.jsoup:jsoup:1.15.3'
api 'org.springframework:spring-context:5.2.21.RELEASE'
implementation 'org.modelmapper:modelmapper:3.1.1'
runtimeOnly 'mysql:mysql-connector-java:8.0.28'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.batch:spring-batch-test:4.2.4.RELEASE'
annotationProcessor('org.projectlombok:lombok:1.18.24')
compileOnly('org.projectlombok:lombok:1.18.24')
}
test {
useJUnitPlatform()
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
description = 'batch'
java.sourceCompatibility = JavaVersion.VERSION_11
publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
tasks.withType(Javadoc) {
options.encoding = 'UTF-8'
}