2021.12.31 Springboot2 build.gradle 백업본
- Java/SpringBoot
- 2021. 12. 31. 23:59
요즘 저장소 찾기가 힘들다 -_ -
plugins {
id 'org.springframework.boot' version '2.6.1'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
group = 'com.jhs.book'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
mavenCentral()
maven { url 'https://repo.spring.io/milestone' }
maven { url 'https://repo.spring.io/snapshot' }
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'junit:junit:4.13.1'
//implementation 'org.projectlombok:lombok'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
runtimeOnly 'com.h2database:h2'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation 'org.springframework.boot:spring-boot-starter-mustache'
implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
implementation 'org.springframework.session:spring-session-jdbc'
}
test {
useJUnitPlatform()
}
'Java > SpringBoot' 카테고리의 다른 글
파라미터 어노테이션 생성 (0) | 2022.03.16 |
---|---|
JPA에서 실제 실행 쿼리(SQL) 로그 설정 ON/OFF (0) | 2022.03.07 |
[JPA] Entity와 Repository (0) | 2022.01.12 |
[IntelliJ Springboot JUnit 에러] No tests found for given includes (0) | 2021.12.31 |
only buildscript {} and other plugins {} script blocks are allowed before plugins {} blocks, no other statements are allowed (0) | 2021.12.15 |
이 글을 공유하기