-
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.
- Loading branch information
Showing
97 changed files
with
552 additions
and
371 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,74 +1,51 @@ | ||
plugins { | ||
id 'java' | ||
id 'org.springframework.boot' version '2.7.13' | ||
id 'io.spring.dependency-management' version '1.0.15.RELEASE' | ||
} | ||
|
||
group = 'sopt.org' | ||
version = '0.0.1-SNAPSHOT' | ||
|
||
java { | ||
sourceCompatibility = '11' | ||
} | ||
buildscript { | ||
ext { | ||
springBootVersion = "2.7.14" | ||
} | ||
|
||
configurations { | ||
compileOnly { | ||
extendsFrom annotationProcessor | ||
repositories { | ||
mavenCentral() | ||
} | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
dependencies { | ||
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}") | ||
} | ||
} | ||
|
||
dependencies { | ||
implementation 'org.springframework.boot:spring-boot-starter-web' | ||
implementation 'org.springframework.boot:spring-boot-starter-validation' | ||
compileOnly 'org.projectlombok:lombok' | ||
annotationProcessor 'org.projectlombok:lombok' | ||
testImplementation 'org.springframework.boot:spring-boot-starter-test' | ||
|
||
// Health Check | ||
implementation 'org.springframework.boot:spring-boot-starter-actuator' | ||
|
||
// JPA & Database | ||
implementation 'org.springframework.boot:spring-boot-starter-data-jpa' | ||
implementation 'mysql:mysql-connector-java:8.0.32' | ||
subprojects { | ||
group = "sopt.org.umbba" | ||
version = '0.0.1-SNAPSHOT' | ||
|
||
//JSON | ||
implementation 'com.googlecode.json-simple:json-simple:1.1.1' | ||
apply plugin: "java-library" | ||
apply plugin: "org.springframework.boot" | ||
apply plugin: "io.spring.dependency-management" | ||
|
||
// Slack Webhook | ||
implementation 'com.slack.api:slack-api-client:1.28.0' | ||
implementation 'com.google.code.gson:gson:2.10.1' | ||
implementation 'com.squareup.okhttp3:okhttp:4.10.0' | ||
implementation 'com.slack.api:slack-app-backend:1.28.0' | ||
implementation 'com.slack.api:slack-api-model:1.28.0' | ||
sourceCompatibility = "11" | ||
|
||
// JWT | ||
implementation group: 'io.jsonwebtoken', name: 'jjwt-api', version: '0.11.2' | ||
implementation group: 'io.jsonwebtoken', name: 'jjwt-impl', version: '0.11.2' | ||
implementation group: 'io.jsonwebtoken', name: 'jjwt-jackson', version: '0.11.2' | ||
|
||
// Spring Security | ||
implementation 'org.springframework.boot:spring-boot-starter-security' | ||
implementation 'org.springframework.security:spring-security-test' | ||
|
||
// Redis | ||
implementation 'org.springframework.boot:spring-boot-starter-data-redis' | ||
repositories { | ||
mavenCentral() | ||
} | ||
|
||
// Social Login | ||
implementation 'org.springframework.cloud:spring-cloud-starter-openfeign:3.1.7' | ||
configurations { | ||
compileOnly { | ||
extendsFrom annotationProcessor | ||
} | ||
} | ||
|
||
// random String | ||
implementation 'org.apache.commons:commons-lang3' | ||
dependencies { | ||
implementation "org.springframework.boot:spring-boot-starter-validation" | ||
testImplementation "org.springframework.boot:spring-boot-starter-test" | ||
|
||
// Firebase | ||
implementation 'com.google.firebase:firebase-admin:9.1.1' | ||
// lombok | ||
compileOnly "org.projectlombok:lombok" | ||
annotationProcessor "org.projectlombok:lombok" | ||
|
||
// Health Check | ||
implementation 'org.springframework.boot:spring-boot-starter-actuator' | ||
|
||
} | ||
} | ||
|
||
tasks.named('test') { | ||
useJUnitPlatform() | ||
} | ||
test { | ||
useJUnitPlatform() | ||
} | ||
} |
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 +1,8 @@ | ||
rootProject.name = 'umbbaServer' | ||
|
||
include 'umbba-common' | ||
include 'umbba-domain' | ||
include 'umbba-external' | ||
include 'umbba-api' | ||
include 'umbba-notification' | ||
|
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package sopt.org.umbba; | ||
|
||
//@EnableJpaAuditing | ||
//@EnableScheduling | ||
//@SpringBootApplication(exclude = { UserDetailsServiceAutoConfiguration.class }) | ||
//@EnableFeignClients | ||
//public class UmbbaServerApplication { | ||
// | ||
// public static void main(String[] args) { | ||
// | ||
// SpringApplication.run(UmbbaServerApplication.class, args); | ||
// | ||
// } | ||
// | ||
//} |
24 changes: 12 additions & 12 deletions
24
...ild/controller/ParentchildController.java → ...ild/controller/ParentchildController.java
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
2 changes: 1 addition & 1 deletion
2
...ler/dto/request/InviteCodeRequestDto.java → ...ler/dto/request/InviteCodeRequestDto.java
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
4 changes: 2 additions & 2 deletions
4
.../request/OnboardingReceiveRequestDto.java → .../request/OnboardingReceiveRequestDto.java
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
9 changes: 4 additions & 5 deletions
9
...dto/response/InviteResultResponseDto.java → ...dto/response/InviteResultResponseDto.java
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: 4 additions & 4 deletions
8
...response/OnboardingInviteResponseDto.java → ...response/OnboardingInviteResponseDto.java
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: 4 additions & 4 deletions
8
...esponse/OnboardingReceiveResponseDto.java → ...esponse/OnboardingReceiveResponseDto.java
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
6 changes: 3 additions & 3 deletions
6
...omain/parentchild/dao/ParentchildDao.java → ...omain/parentchild/dao/ParentchildDao.java
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
9 changes: 4 additions & 5 deletions
9
...domain/parentchild/model/Parentchild.java → ...domain/parentchild/model/Parentchild.java
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: 4 additions & 4 deletions
8
...arentchild/model/ParentchildRelation.java → ...arentchild/model/ParentchildRelation.java
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
4 changes: 2 additions & 2 deletions
4
...ild/repository/ParentchildRepository.java → ...ild/repository/ParentchildRepository.java
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
38 changes: 19 additions & 19 deletions
38
...rentchild/service/ParentchildService.java → ...rentchild/service/ParentchildService.java
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.