-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
47 lines (40 loc) · 1.64 KB
/
build.gradle
File metadata and controls
47 lines (40 loc) · 1.64 KB
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
plugins {
id 'org.springframework.boot' version '2.2.11.RELEASE'
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
id 'java'
}
group = 'com.jeogiyo'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jdbc'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:2.1.3'
implementation 'org.apache.tomcat.embed:tomcat-embed-jasper'
implementation 'javax.servlet:jstl:1.2'
implementation fileTree(dir: 'libs',include: ['*.jar'])
implementation files('libs/ojdbc6.jar')
implementation 'org.apache.tiles:tiles-jsp:3.0.4'
compile group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1'
compile group: 'net.coobird', name: 'thumbnailator', version: '0.4.11'
compile group: 'net.nurigo', name: 'javaSDK', version: '2.2'
compile group: 'commons-codec', name: 'commons-codec', version: '1.15'
implementation 'org.springframework.boot:spring-boot-devtools'
// 롬복
compile('org.projectlombok:lombok')
testCompile "org.projectlombok:lombok"
annotationProcessor('org.projectlombok:lombok')
testAnnotationProcessor('org.projectlombok:lombok')
runtimeOnly 'com.h2database:h2'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
testCompile("org.mybatis.spring.boot:mybatis-spring-boot-starter-test:2.1.3")
compile group: 'org.bgee.log4jdbc-log4j2', name: 'log4jdbc-log4j2-jdbc4.1', version: '1.16' /* Log4jdbc */
}
test {
useJUnitPlatform()
}