Skip to content

Commit

Permalink
📝docs : build.gradle jar disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
DDonghyeo committed May 23, 2024
1 parent 4c71e29 commit b8e2915
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Eureka/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ java {
sourceCompatibility = '17'
}

jar {
enabled = false
}

repositories {
mavenCentral()
}
Expand Down
4 changes: 4 additions & 0 deletions apiGateway-service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ java {
sourceCompatibility = '17'
}

jar {
enabled = false
}

repositories {
mavenCentral()
}
Expand Down
4 changes: 4 additions & 0 deletions config-service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ java {
sourceCompatibility = '17'
}

jar {
enabled = false
}

repositories {
mavenCentral()
}
Expand Down
4 changes: 4 additions & 0 deletions noti-service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ java {
sourceCompatibility = '17'
}

jar {
enabled = false
}

repositories {
mavenCentral()
}
Expand Down
4 changes: 4 additions & 0 deletions user-service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ java {
sourceCompatibility = '17'
}

jar {
enabled = false
}

configurations {
compileOnly {
extendsFrom annotationProcessor
Expand Down
4 changes: 4 additions & 0 deletions weather-service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ java {
sourceCompatibility = '17'
}

jar {
enabled = false
}

repositories {
mavenCentral()
}
Expand Down

0 comments on commit b8e2915

Please sign in to comment.