-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
executable file
·56 lines (47 loc) · 1.94 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
plugins {
id 'org.springframework.boot' version '2.2.2.RELEASE'
id 'io.spring.dependency-management' version '1.0.8.RELEASE'
id 'java'
id 'org.hidetake.ssh' version '2.10.1'
}
group = 'com.jeonbuk'
sourceCompatibility = '11'
apply from: 'upload.gradle'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
bootJar {
launchScript()
}
dependencies {
implementation group: 'com.github.ulisesbocchio', name: 'jasypt-spring-boot-starter', version: '3.0.2'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-mail'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'mysql:mysql-connector-java'
annotationProcessor 'org.projectlombok:lombok'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
compile group: 'org.apache.tomcat', name: 'tomcat-jdbc', version: '9.0.29'
compile group: 'org.mybatis.spring.boot', name: 'mybatis-spring-boot-starter', version: '2.1.1'
implementation 'org.codehaus.groovy:groovy'
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.29'
testCompile group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
compile group: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.0'
compile group: 'org.apache.tomcat.embed', name: 'tomcat-embed-core', version: '9.0.29'
compile group: 'org.apache.commons', name: 'commons-configuration2', version: '2.7'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.10'
implementation group: 'commons-beanutils', name: 'commons-beanutils', version: '1.9.4'
compile group: 'org.springframework.mobile', name: 'spring-mobile-device', version: '1.1.5.RELEASE'
compile group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1'
}
test {
useJUnitPlatform()
}