-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #225 from BudgetBuddiesTeam/dev
[v13] 새로운 버전 배포
- Loading branch information
Showing
165 changed files
with
6,234 additions
and
1,137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,60 +1,75 @@ | ||
plugins { | ||
id 'java' | ||
id 'org.springframework.boot' version '3.2.7' | ||
id 'io.spring.dependency-management' version '1.1.5' | ||
id 'com.google.cloud.tools.jib' version '3.4.3' | ||
id 'java' | ||
id 'org.springframework.boot' version '3.2.7' | ||
id 'io.spring.dependency-management' version '1.1.5' | ||
id 'com.google.cloud.tools.jib' version '3.4.3' | ||
} | ||
|
||
group = 'com.bbteam' | ||
version = '0.0.1-SNAPSHOT' | ||
|
||
java { | ||
toolchain { | ||
languageVersion = JavaLanguageVersion.of(17) | ||
} | ||
toolchain { | ||
languageVersion = JavaLanguageVersion.of(17) | ||
} | ||
} | ||
|
||
configurations { | ||
compileOnly { | ||
extendsFrom annotationProcessor | ||
} | ||
compileOnly { | ||
extendsFrom annotationProcessor | ||
} | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
mavenCentral() | ||
} | ||
|
||
dependencies { | ||
implementation 'org.springframework.boot:spring-boot-starter-data-jpa' | ||
implementation 'org.springframework.boot:spring-boot-starter-web' | ||
implementation 'org.springframework.boot:spring-boot-starter-validation' | ||
implementation 'org.springframework.boot:spring-boot-starter-security' // security | ||
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.2.0' //Swagger | ||
compileOnly 'org.projectlombok:lombok' | ||
runtimeOnly 'com.mysql:mysql-connector-j' | ||
annotationProcessor 'org.projectlombok:lombok' | ||
testImplementation 'org.springframework.boot:spring-boot-starter-test' | ||
testRuntimeOnly 'org.junit.platform:junit-platform-launcher' | ||
implementation 'org.springframework.boot:spring-boot-starter-data-jpa' | ||
implementation 'org.springframework.boot:spring-boot-starter-web' | ||
implementation 'org.springframework.boot:spring-boot-starter-validation' | ||
implementation 'org.springframework.boot:spring-boot-starter-security' // security | ||
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.2.0' //Swagger | ||
|
||
implementation 'net.nurigo:sdk:4.2.7' // 문자메시지 대행 서비스 | ||
|
||
implementation 'org.springframework.boot:spring-boot-starter-cache' // cache | ||
|
||
compileOnly 'org.projectlombok:lombok' | ||
runtimeOnly 'com.mysql:mysql-connector-j' | ||
annotationProcessor 'org.projectlombok:lombok' | ||
testImplementation 'org.springframework.boot:spring-boot-starter-test' | ||
testRuntimeOnly 'org.junit.platform:junit-platform-launcher' | ||
|
||
implementation 'io.jsonwebtoken:jjwt-api:0.11.5' | ||
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.5' | ||
runtimeOnly('io.jsonwebtoken:jjwt-jackson:0.11.5') // jackson으로 jwt 파싱 | ||
|
||
// querydsl 관련 | ||
implementation 'com.querydsl:querydsl-jpa:5.0.0:jakarta' | ||
annotationProcessor "com.querydsl:querydsl-apt:${dependencyManagement.importedProperties['querydsl.version']}:jakarta" | ||
annotationProcessor "jakarta.annotation:jakarta.annotation-api" | ||
annotationProcessor "jakarta.persistence:jakarta.persistence-api" | ||
} | ||
|
||
tasks.named('test') { | ||
useJUnitPlatform() | ||
useJUnitPlatform() | ||
} | ||
|
||
jib { | ||
from { | ||
image = 'openjdk:17-alpine' | ||
platforms { | ||
platform { | ||
architecture = 'amd64' | ||
os = 'linux' | ||
} | ||
} | ||
} | ||
to { | ||
image = 'binjumeoniz1/binjumeoniz:latest' | ||
} | ||
container { | ||
jvmFlags = ['-Dspring.profiles.active=dev'] | ||
} | ||
from { | ||
image = 'openjdk:17-alpine' | ||
platforms { | ||
platform { | ||
architecture = 'amd64' | ||
os = 'linux' | ||
} | ||
} | ||
} | ||
to { | ||
image = 'binjumeoniz1/binjumeoniz:latest' | ||
} | ||
container { | ||
jvmFlags = ['-Dspring.profiles.active=dev'] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 0 additions & 8 deletions
8
src/main/java/com/bbteam/budgetbuddies/apiPayload/code/BaseCode.java
This file was deleted.
Oops, something went wrong.
16 changes: 0 additions & 16 deletions
16
src/main/java/com/bbteam/budgetbuddies/apiPayload/code/ReasonDto.java
This file was deleted.
Oops, something went wrong.
41 changes: 0 additions & 41 deletions
41
src/main/java/com/bbteam/budgetbuddies/apiPayload/code/status/CommonErrorStatus.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.