-
Notifications
You must be signed in to change notification settings - Fork 0
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 #24 from depromeet/feat/LS-13-2
feat/LS-13: 스페이스 API 구현
- Loading branch information
Showing
35 changed files
with
605 additions
and
269 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,138 +1,141 @@ | ||
plugins { | ||
id 'java' | ||
id 'org.springframework.boot' version '3.3.1' | ||
id 'io.spring.dependency-management' version '1.1.5' | ||
id 'java' | ||
id 'org.springframework.boot' version '3.3.1' | ||
id 'io.spring.dependency-management' version '1.1.5' | ||
} | ||
|
||
jar.enabled = false | ||
bootJar.enabled = false | ||
|
||
java { | ||
toolchain { | ||
languageVersion = JavaLanguageVersion.of(17) | ||
} | ||
toolchain { | ||
languageVersion = JavaLanguageVersion.of(17) | ||
} | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
mavenCentral() | ||
} | ||
|
||
subprojects { | ||
group 'org.layer' | ||
version '0.0.1' | ||
sourceCompatibility = '17' | ||
group 'org.layer' | ||
version '0.0.1' | ||
sourceCompatibility = '17' | ||
|
||
apply plugin: 'java' | ||
apply plugin: 'java-library' | ||
apply plugin: 'idea' | ||
apply plugin: 'org.springframework.boot' | ||
apply plugin: 'io.spring.dependency-management' | ||
apply plugin: 'java' | ||
apply plugin: 'java-library' | ||
apply plugin: 'idea' | ||
apply plugin: 'org.springframework.boot' | ||
apply plugin: 'io.spring.dependency-management' | ||
|
||
configurations { | ||
compileOnly { | ||
extendsFrom annotationProcessor | ||
} | ||
} | ||
configurations { | ||
compileOnly { | ||
extendsFrom annotationProcessor | ||
} | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
} | ||
repositories { | ||
mavenCentral() | ||
} | ||
|
||
dependencies { // 모든 하위 모듈에 추가 될 의존성 목록입니다. | ||
dependencies { // 모든 하위 모듈에 추가 될 의존성 목록입니다. | ||
|
||
compileOnly 'org.projectlombok:lombok' | ||
annotationProcessor 'org.projectlombok:lombok' | ||
compileOnly 'org.projectlombok:lombok' | ||
annotationProcessor 'org.projectlombok:lombok' | ||
|
||
testImplementation platform('org.junit:junit-bom:5.9.1') | ||
testImplementation 'org.junit.jupiter:junit-jupiter' | ||
testImplementation platform('org.junit:junit-bom:5.9.1') | ||
testImplementation 'org.junit.jupiter:junit-jupiter' | ||
|
||
implementation 'org.springframework.boot:spring-boot-starter' | ||
implementation 'org.springframework.boot:spring-boot-starter-web' | ||
implementation 'org.springframework.boot:spring-boot-starter' | ||
implementation 'org.springframework.boot:spring-boot-starter-web' | ||
|
||
} | ||
} | ||
|
||
test { | ||
useJUnitPlatform() | ||
} | ||
test { | ||
useJUnitPlatform() | ||
} | ||
} | ||
|
||
project(":layer-api") { | ||
version '0.0.1' | ||
dependencies { | ||
implementation project(path: ':layer-common') | ||
implementation project(path: ':layer-domain') | ||
implementation project(path: ':layer-external') | ||
version '0.0.1' | ||
dependencies { | ||
implementation project(path: ':layer-common') | ||
implementation project(path: ':layer-domain') | ||
implementation project(path: ':layer-external') | ||
|
||
|
||
implementation 'org.springframework.boot:spring-boot-starter-actuator' | ||
implementation 'org.springframework.boot:spring-boot-starter-validation' | ||
implementation 'org.springframework.boot:spring-boot-starter-actuator' | ||
implementation 'org.springframework.boot:spring-boot-starter-validation' | ||
|
||
//== jwt ==// | ||
implementation 'io.jsonwebtoken:jjwt-api:0.12.5' | ||
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.12.5' | ||
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.12.5' | ||
//== jwt ==// | ||
implementation 'io.jsonwebtoken:jjwt-api:0.12.5' | ||
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.12.5' | ||
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.12.5' | ||
|
||
// oauth2-client 라이브러리 | ||
implementation 'org.springframework.boot:spring-boot-starter-oauth2-client' | ||
// oauth2-client 라이브러리 | ||
implementation 'org.springframework.boot:spring-boot-starter-oauth2-client' | ||
|
||
// redis | ||
implementation 'org.springframework.boot:spring-boot-starter-data-redis' | ||
testImplementation 'org.springframework.boot:spring-boot-starter-test' | ||
// redis | ||
implementation 'org.springframework.boot:spring-boot-starter-data-redis' | ||
testImplementation 'org.springframework.boot:spring-boot-starter-test' | ||
|
||
|
||
// swagger | ||
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.2.0") | ||
// swagger | ||
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.2.0") | ||
|
||
// jpa | ||
implementation 'org.springframework.boot:spring-boot-starter-data-jpa' | ||
// jpa | ||
implementation 'org.springframework.boot:spring-boot-starter-data-jpa' | ||
|
||
// mysql | ||
runtimeOnly 'com.mysql:mysql-connector-j' | ||
} | ||
// mysql | ||
runtimeOnly 'com.mysql:mysql-connector-j' | ||
} | ||
|
||
jar.enabled = false | ||
bootJar.enabled = true | ||
jar.enabled = false | ||
bootJar.enabled = true | ||
} | ||
|
||
project(":layer-common") { | ||
bootJar.enabled = false | ||
jar.enabled = true | ||
bootJar.enabled = false | ||
jar.enabled = true | ||
|
||
dependencies { | ||
implementation 'org.springframework.boot:spring-boot-starter-web' | ||
dependencies { | ||
// swagger | ||
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.2.0") | ||
|
||
implementation 'org.springframework.boot:spring-boot-starter-web' | ||
// implementation 'org.springframework.boot:spring-boot-starter-data-jpa' | ||
} | ||
} | ||
|
||
} | ||
|
||
|
||
project(":layer-domain"){ | ||
bootJar.enabled = false | ||
jar.enabled = true | ||
project(":layer-domain") { | ||
bootJar.enabled = false | ||
jar.enabled = true | ||
|
||
dependencies { | ||
implementation project(path: ':layer-common') | ||
implementation 'org.springframework.boot:spring-boot-starter-data-jpa' | ||
implementation 'org.springframework.boot:spring-boot-starter-validation' | ||
implementation 'org.springframework.boot:spring-boot-starter-oauth2-client' | ||
dependencies { | ||
implementation project(path: ':layer-common') | ||
implementation 'org.springframework.boot:spring-boot-starter-data-jpa' | ||
implementation 'org.springframework.boot:spring-boot-starter-validation' | ||
implementation 'org.springframework.boot:spring-boot-starter-oauth2-client' | ||
|
||
// h2 | ||
runtimeOnly 'com.h2database:h2' | ||
// h2 | ||
runtimeOnly 'com.h2database:h2' | ||
|
||
testImplementation platform('org.junit:junit-bom:5.9.1') | ||
testImplementation 'org.junit.jupiter:junit-jupiter' | ||
} | ||
testImplementation platform('org.junit:junit-bom:5.9.1') | ||
testImplementation 'org.junit.jupiter:junit-jupiter' | ||
} | ||
} | ||
|
||
project(":layer-external"){ | ||
bootJar.enabled = false | ||
jar.enabled = true | ||
project(":layer-external") { | ||
bootJar.enabled = false | ||
jar.enabled = true | ||
|
||
dependencies { | ||
implementation project(path: ':layer-common') | ||
implementation project(path: ':layer-domain') | ||
|
||
testImplementation platform('org.junit:junit-bom:5.9.1') | ||
testImplementation 'org.junit.jupiter:junit-jupiter' | ||
} | ||
testImplementation platform('org.junit:junit-bom:5.9.1') | ||
testImplementation 'org.junit.jupiter:junit-jupiter' | ||
} | ||
} |
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
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.