refactor : 전체 디렉토리 구조 변경
This commit is contained in:
39
도서/스프링 부트와 AWS로 혼자 구현하는 웹 서비스/build.gradle
Normal file
39
도서/스프링 부트와 AWS로 혼자 구현하는 웹 서비스/build.gradle
Normal file
@@ -0,0 +1,39 @@
|
||||
buildscript{
|
||||
ext{
|
||||
springBootVersion = '2.1.7.RELEASE'
|
||||
}
|
||||
repositories {
|
||||
mavenCentral()
|
||||
jcenter()
|
||||
}
|
||||
dependencies {
|
||||
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
|
||||
}
|
||||
}
|
||||
|
||||
apply plugin: 'java'
|
||||
apply plugin: 'eclipse'
|
||||
apply plugin: 'org.springframework.boot'
|
||||
apply plugin: 'io.spring.dependency-management'
|
||||
|
||||
group 'com.banjjoknim.book'
|
||||
version '1.0.1-SNAPSHOT-' + new Date().format("yyyyMMddHHmmss")
|
||||
sourceCompatibility = 1.11
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compile('org.springframework.boot:spring-boot-starter-web')
|
||||
compile('org.projectlombok:lombok')
|
||||
annotationProcessor('org.projectlombok:lombok')
|
||||
compile('org.springframework.boot:spring-boot-starter-data-jpa')
|
||||
compile('com.h2database:h2')
|
||||
testCompile('org.springframework.boot:spring-boot-starter-test')
|
||||
compile('org.springframework.boot:spring-boot-starter-mustache')
|
||||
compile('org.springframework.boot:spring-boot-starter-oauth2-client')
|
||||
compile('org.springframework.session:spring-session-jdbc')
|
||||
testCompile('org.springframework.security:spring-security-test')
|
||||
compile('org.mariadb.jdbc:mariadb-java-client')
|
||||
}
|
||||
Reference in New Issue
Block a user