-
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.
* feat: ci workflow μμ± * feat: cd workflow μμ± * fix: mysql actions step μμ * fix: docker image νκ·Έ μ κ±° * fix: cd νμ΄νλΌμΈ trigger λΈλμΉλͺ μμ (develop->dev) * fix: gradle build κ³Όμ μΆκ° * fix: gradle build κ³Όμ μΆκ° * fix: cd νμ΄νλΌμΈ μμ μμ * fix: cd νμ΄νλΌμΈ μμ μμ μ¬ν μμ * fix: gradlew κΆν μμ * fix: ν μ€νΈ μ€ν¨ μ€λ₯ ν΄κ²°
- Loading branch information
1 parent
1b41db4
commit e09ab66
Showing
8 changed files
with
396 additions
and
360 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,50 +1,61 @@ | ||
buildscript { | ||
repositories { | ||
mavenCentral() | ||
} | ||
repositories { | ||
mavenCentral() | ||
} | ||
} | ||
|
||
plugins { | ||
id 'java' | ||
id 'org.springframework.boot' version '3.2.3' | ||
id 'io.spring.dependency-management' version '1.1.4' | ||
id 'java' | ||
id 'org.springframework.boot' version '3.2.3' | ||
id 'io.spring.dependency-management' version '1.1.4' | ||
} | ||
|
||
group = 'kr.co' | ||
version = '0.0.1-SNAPSHOT' | ||
|
||
bootJar {enabled = false} | ||
jar {enabled = true} | ||
bootJar { enabled = false } | ||
jar { enabled = true } | ||
|
||
allprojects { | ||
group = 'kr.co' | ||
version = '0.0.1-SNAPSHOT' | ||
sourceCompatibility = '17' | ||
group = 'kr.co' | ||
version = '0.0.1-SNAPSHOT' | ||
sourceCompatibility = '17' | ||
} | ||
|
||
subprojects { | ||
apply plugin: "java" | ||
apply plugin: 'java-library' | ||
apply plugin: "io.spring.dependency-management" | ||
apply plugin: "org.springframework.boot" | ||
|
||
repositories { | ||
mavenCentral() | ||
} | ||
|
||
configurations { | ||
compileOnly { | ||
extendsFrom annotationProcessor | ||
} | ||
} | ||
|
||
dependencies { | ||
compileOnly 'org.projectlombok:lombok' | ||
annotationProcessor 'org.projectlombok:lombok' | ||
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor" | ||
|
||
testImplementation 'org.springframework.boot:spring-boot-starter-test' | ||
testCompileOnly 'org.projectlombok:lombok' | ||
testAnnotationProcessor 'org.projectlombok:lombok' | ||
} | ||
apply plugin: "java" | ||
apply plugin: 'java-library' | ||
apply plugin: "io.spring.dependency-management" | ||
apply plugin: "org.springframework.boot" | ||
|
||
repositories { | ||
mavenCentral() | ||
} | ||
|
||
configurations { | ||
compileOnly { | ||
extendsFrom annotationProcessor | ||
} | ||
} | ||
|
||
dependencies { | ||
compileOnly 'org.projectlombok:lombok' | ||
annotationProcessor 'org.projectlombok:lombok' | ||
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor" | ||
|
||
testImplementation 'org.springframework.boot:spring-boot-starter-test' | ||
testCompileOnly 'org.projectlombok:lombok' | ||
testAnnotationProcessor 'org.projectlombok:lombok' | ||
} | ||
|
||
test { | ||
useJUnitPlatform() | ||
testLogging { | ||
showStandardStreams = true | ||
showCauses = true | ||
showExceptions = true | ||
showStackTraces = true | ||
exceptionFormat = 'full' | ||
} | ||
} | ||
} |
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.