Skip to content

Commit

Permalink
chore/#131 gradle 설정 순서 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
JiwonDev committed Jan 5, 2024
1 parent c87a60b commit 292571f
Show file tree
Hide file tree
Showing 18 changed files with 93 additions and 93 deletions.
10 changes: 5 additions & 5 deletions account-api/account-application/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
}

tasks.jar {
enabled = true
}
Expand All @@ -6,11 +11,6 @@ tasks.bootJar {
enabled = false
}

plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
}

dependencies {
implementation(project(":account-api:account-domain"))
implementation(project(":common"))
Expand Down
10 changes: 5 additions & 5 deletions account-api/account-infrastructure/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
}

tasks.jar {
enabled = true
}
Expand All @@ -6,11 +11,6 @@ tasks.bootJar {
enabled = false
}

plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
}

dependencies {
implementation(project(":account-api:account-domain"))
implementation(project(":common"))
Expand Down
10 changes: 5 additions & 5 deletions account-api/account-presentation/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
}

tasks.jar {
enabled = true
}
Expand All @@ -6,11 +11,6 @@ tasks.bootJar {
enabled = false
}

plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
}

dependencies {
implementation(project(":account-api:account-application"))
implementation(project(":common"))
Expand Down
8 changes: 4 additions & 4 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
tasks.bootJar {
enabled = true
}

plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
kotlin("plugin.jpa")
}

tasks.bootJar {
enabled = true
}

dependencies {
implementation(project(":notification-api:notification-presentation"))
implementation(project(":notification-api:notification-application"))
Expand Down
18 changes: 9 additions & 9 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import org.springframework.boot.gradle.dsl.SpringBootExtension

plugins {
jacoco
idea

kotlin("jvm")
kotlin("kapt")
kotlin("plugin.noarg")
}

buildscript {
repositories {
maven("https://plugins.gradle.org/m2/")
Expand All @@ -13,15 +22,6 @@ buildscript {
}
}

plugins {
jacoco
idea

kotlin("jvm")
kotlin("kapt")
kotlin("plugin.noarg")
}

java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
Expand Down
10 changes: 5 additions & 5 deletions notification-api/notification-application/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
}

tasks.jar {
enabled = true
}
Expand All @@ -6,11 +11,6 @@ tasks.bootJar {
enabled = false
}

plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
}

dependencies {
implementation(project(":notification-api:notification-domain"))
implementation(project(":common"))
Expand Down
10 changes: 5 additions & 5 deletions notification-api/notification-infrastructure/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
}

tasks.jar {
enabled = true
}
Expand All @@ -6,11 +11,6 @@ tasks.bootJar {
enabled = false
}

plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
}

dependencies {
implementation(project(":notification-api:notification-domain"))
implementation(project(":common"))
Expand Down
10 changes: 5 additions & 5 deletions notification-api/notification-presentation/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
}

tasks.jar {
enabled = true
}
Expand All @@ -6,11 +11,6 @@ tasks.bootJar {
enabled = false
}

plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
}

dependencies {
implementation(project(":notification-api:notification-application"))
implementation(project(":common"))
Expand Down
10 changes: 5 additions & 5 deletions order-api/order-application/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
}

tasks.jar {
enabled = true
}
Expand All @@ -6,11 +11,6 @@ tasks.bootJar {
enabled = false
}

plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
}

dependencies {
implementation(project(":order-api:order-domain"))
implementation(project(":common"))
Expand Down
10 changes: 5 additions & 5 deletions order-api/order-infrastructure/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
}

tasks.jar {
enabled = true
}
Expand All @@ -6,11 +11,6 @@ tasks.bootJar {
enabled = false
}

plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
}

dependencies {
implementation(project(":order-api:order-domain"))
implementation(project(":common"))
Expand Down
10 changes: 5 additions & 5 deletions order-api/order-presentation/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
}

tasks.jar {
enabled = true
}
Expand All @@ -6,11 +11,6 @@ tasks.bootJar {
enabled = false
}

plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
}

dependencies {
implementation(project(":order-api:order-application"))
implementation(project(":common"))
Expand Down
10 changes: 5 additions & 5 deletions payment-api/payment-application/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
}

tasks.jar {
enabled = true
}
Expand All @@ -6,11 +11,6 @@ tasks.bootJar {
enabled = false
}

plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
}

dependencies {
implementation(project(":payment-api:payment-domain"))
implementation(project(":common"))
Expand Down
10 changes: 5 additions & 5 deletions payment-api/payment-infrastructure/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
}

tasks.jar {
enabled = true
}
Expand All @@ -6,11 +11,6 @@ tasks.bootJar {
enabled = false
}

plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
}

configurations {
compileOnly {
extendsFrom(configurations.annotationProcessor.get())
Expand Down
10 changes: 5 additions & 5 deletions payment-api/payment-presentation/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
}

tasks.jar {
enabled = true
}
Expand All @@ -6,11 +11,6 @@ tasks.bootJar {
enabled = false
}

plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
}

dependencies {
implementation(project(":payment-api:payment-application"))
implementation(project(":common"))
Expand Down
10 changes: 5 additions & 5 deletions product-api/product-application/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
}

tasks.jar {
enabled = true
}
Expand All @@ -6,11 +11,6 @@ tasks.bootJar {
enabled = false
}

plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
}

dependencies {
implementation(project(":product-api:product-domain"))
implementation(project(":common"))
Expand Down
10 changes: 5 additions & 5 deletions product-api/product-infrastructure/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
}

tasks.jar {
enabled = true
}
Expand All @@ -6,11 +11,6 @@ tasks.bootJar {
enabled = false
}

plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
}

dependencies {
implementation(project(":product-api:product-domain"))
implementation(project(":common"))
Expand Down
10 changes: 5 additions & 5 deletions product-api/product-presentation/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
}

tasks.jar {
enabled = true
}
Expand All @@ -6,11 +11,6 @@ tasks.bootJar {
enabled = false
}

plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
}

dependencies {
implementation(project(":product-api:product-application"))
implementation(project(":common"))
Expand Down
10 changes: 5 additions & 5 deletions query-api/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
}

tasks.jar {
enabled = true
}
Expand All @@ -6,11 +11,6 @@ tasks.bootJar {
enabled = false
}

plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
}

dependencies {
implementation(project(":common"))
implementation("org.springdoc:springdoc-openapi-ui:${Version.springdocOpenapi}")
Expand Down

0 comments on commit 292571f

Please sign in to comment.