-
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.
�Feat: 각 모듈의 gradle 설정에서 필요한 부분 외에는 제거 (#122)
* Feat(#121): gradle clean and removed unused files * Feat(#121): make directory for service-account file * Feat(#121): versioning to 0.0.2
- Loading branch information
1 parent
7051523
commit a2c3eb5
Showing
17 changed files
with
114 additions
and
317 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 |
---|---|---|
|
@@ -28,6 +28,7 @@ out/ | |
|
||
**/src/main/resources/service-account.json | ||
|
||
*.yml | ||
application.yml | ||
application.properties | ||
|
||
|
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,82 +1,65 @@ | ||
plugins { | ||
id 'java' | ||
id 'org.springframework.boot' version '3.1.4' | ||
id 'io.spring.dependency-management' version '1.1.3' | ||
id 'com.google.cloud.tools.jib' version '3.4.0' | ||
id 'java' | ||
id 'org.springframework.boot' version '3.1.4' | ||
id 'io.spring.dependency-management' version '1.1.3' | ||
id 'com.google.cloud.tools.jib' version '3.4.0' | ||
} | ||
|
||
group = 'com.numberone.backend' | ||
version = '0.0.1-SNAPSHOT' | ||
version = '0.0.2-SNAPSHOT' | ||
|
||
allprojects { | ||
apply plugin: 'java' | ||
sourceCompatibility = JavaVersion.VERSION_17 | ||
apply plugin: 'java' | ||
sourceCompatibility = JavaVersion.VERSION_17 | ||
|
||
repositories { | ||
mavenCentral() | ||
maven{url 'https://jitpack.io'} | ||
} | ||
repositories { | ||
mavenCentral() | ||
maven { url 'https://jitpack.io' } | ||
} | ||
} | ||
|
||
ext { | ||
set('springCloudVersion', "2021.0.1") | ||
queryDslVersion = "4.3.0" | ||
set('springCloudVersion', "2021.0.1") | ||
} | ||
|
||
|
||
subprojects { | ||
apply plugin: 'java' | ||
apply plugin: 'io.spring.dependency-management' | ||
apply plugin: 'java-library' | ||
apply plugin: 'org.springframework.boot' | ||
apply plugin: 'jacoco' | ||
|
||
configurations { | ||
developmentOnly | ||
runtimeClasspath { | ||
extendsFrom developmentOnly | ||
} | ||
|
||
compileOnly { | ||
extendsFrom annotationProcessor | ||
} | ||
|
||
all { | ||
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat' | ||
} | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
} | ||
|
||
dependencyManagement { | ||
imports { | ||
mavenBom("org.springframework.boot:spring-boot-dependencies:3.1.4") | ||
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}" | ||
} | ||
} | ||
|
||
dependencies { | ||
compileOnly 'org.projectlombok:lombok' | ||
annotationProcessor 'org.projectlombok:lombok' | ||
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor' | ||
|
||
implementation 'org.springframework.boot:spring-boot-starter-undertow' | ||
|
||
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '2.10.3' | ||
implementation 'com.google.code.gson:gson:2.10.1' | ||
|
||
testImplementation('org.springframework.boot:spring-boot-starter-test') { | ||
exclude module: 'junit' | ||
} | ||
testImplementation(platform('org.junit:junit-bom:5.9.3')) | ||
testImplementation('org.junit.jupiter:junit-jupiter') | ||
} | ||
|
||
|
||
tasks.named('test') { | ||
useJUnitPlatform() | ||
} | ||
apply plugin: 'io.spring.dependency-management' | ||
apply plugin: 'java-library' | ||
apply plugin: 'org.springframework.boot' | ||
apply plugin: 'jacoco' | ||
|
||
configurations { | ||
compileOnly { | ||
extendsFrom annotationProcessor | ||
} | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
} | ||
|
||
dependencyManagement { | ||
imports { | ||
mavenBom("org.springframework.boot:spring-boot-dependencies:3.1.4") | ||
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}" | ||
} | ||
} | ||
|
||
dependencies { | ||
// lombok | ||
compileOnly 'org.projectlombok:lombok' | ||
annotationProcessor 'org.projectlombok:lombok' | ||
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor' | ||
|
||
// spring | ||
implementation 'org.springframework.boot:spring-boot-starter-web' | ||
implementation 'org.springframework.boot:spring-boot-starter-validation' | ||
implementation 'org.springframework.boot:spring-boot-starter-security' | ||
implementation 'org.springframework.boot:spring-boot-starter-aop' | ||
|
||
// swagger | ||
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.0.2' | ||
|
||
} | ||
|
||
} |
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 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
25 changes: 0 additions & 25 deletions
25
daepiro-app/src/main/java/com/numberone/backend/LoginTestController.java
This file was deleted.
Oops, something went wrong.
23 changes: 0 additions & 23 deletions
23
daepiro-app/src/main/java/com/numberone/backend/LoginTestResponse.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
Oops, something went wrong.