From add8735b1225fbcbe5aa04689fdd55b03ccbc584 Mon Sep 17 00:00:00 2001 From: yeseul106 <20191037@sungshin.ac.kr> Date: Mon, 4 Dec 2023 20:24:53 +0900 Subject: [PATCH] =?UTF-8?q?[#89]=20config:=20hibernate-types=20=EC=82=AC?= =?UTF-8?q?=EC=9A=A9=EC=9D=84=20=EC=9C=84=ED=95=B4=20=EC=9D=98=EC=A1=B4?= =?UTF-8?q?=EC=84=B1=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main/build.gradle | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/main/build.gradle b/main/build.gradle index 4c0115e4..88e9e725 100644 --- a/main/build.gradle +++ b/main/build.gradle @@ -1,41 +1,41 @@ plugins { - id 'java' - id 'org.springframework.boot' version '3.1.5' - id 'io.spring.dependency-management' version '1.1.3' + id 'java' + id 'org.springframework.boot' version '3.1.5' + id 'io.spring.dependency-management' version '1.1.3' } group = 'org.sopt.makers.crew' version = '0.0.1-SNAPSHOT' java { - sourceCompatibility = '17' + sourceCompatibility = '17' } configurations { - compileOnly { - extendsFrom annotationProcessor - } + compileOnly { + extendsFrom annotationProcessor + } } repositories { - mavenCentral() + mavenCentral() } dependencies { - implementation 'org.springframework.boot:spring-boot-starter-web' - // https://mvnrepository.com/artifact/org.springdoc/springdoc-openapi-ui - implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.2.0' - implementation 'org.springframework.boot:spring-boot-starter-webflux:3.1.5' - implementation 'org.springframework.boot:spring-boot-starter-actuator' + implementation 'org.springframework.boot:spring-boot-starter-web' + // https://mvnrepository.com/artifact/org.springdoc/springdoc-openapi-ui + implementation 'io.hypersistence:hypersistence-utils-hibernate-60:3.5.2' + implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.2.0' + implementation 'org.springframework.boot:spring-boot-starter-webflux:3.1.5' + implementation 'org.springframework.boot:spring-boot-starter-actuator' implementation 'org.springframework.boot:spring-boot-starter-data-jpa' - implementation 'io.hypersistence:hypersistence-utils-hibernate-60:3.2.0' compileOnly 'org.projectlombok:lombok' - developmentOnly 'org.springframework.boot:spring-boot-devtools' - annotationProcessor 'org.projectlombok:lombok' - testImplementation 'org.springframework.boot:spring-boot-starter-test' - implementation group: 'org.postgresql', name: 'postgresql', version: '42.6.0' + developmentOnly 'org.springframework.boot:spring-boot-devtools' + annotationProcessor 'org.projectlombok:lombok' + testImplementation 'org.springframework.boot:spring-boot-starter-test' + implementation group: 'org.postgresql', name: 'postgresql', version: '42.6.0' } tasks.named('test') { - useJUnitPlatform() + useJUnitPlatform() }