Skip to content

Commit

Permalink
adjust
Browse files Browse the repository at this point in the history
  • Loading branch information
mingchiuli committed Oct 19, 2024
1 parent ce7d59d commit a32b174
Show file tree
Hide file tree
Showing 60 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main-auth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
paths:
- 'micro-auth/**'
- 'build.gradle.kts'
- 'micro-common/**'
- 'common/**'
jobs:
build:
name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main-blog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
paths:
- 'micro-blog/**'
- 'build.gradle.kts'
- 'micro-common/**'
- 'common/**'
jobs:
build:
name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main-exhibit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
paths:
- 'micro-exhibit/**'
- 'build.gradle.kts'
- 'micro-common/**'
- 'common/**'
jobs:
build:
name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main-gateway.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
paths:
- 'micro-gateway/**'
- 'build.gradle.kts'
- 'micro-common/**'
- 'common/**'
jobs:
build:
name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main-search.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
paths:
- 'micro-search/**'
- 'build.gradle.kts'
- 'micro-common/**'
- 'common/**'
jobs:
build:
name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main-user.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
paths:
- 'micro-user/**'
- 'build.gradle.kts'
- 'micro-common/**'
- 'common/**'
jobs:
build:
name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main-websocket.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
paths:
- 'micro-websocket/**'
- 'build.gradle.kts'
- 'micro-common/**'
- 'common/**'
jobs:
build:
name: Build
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ dependencies {
implementation(project(":micro-exhibit"))
implementation(project(":micro-websocket"))
implementation(project(":micro-search"))
implementation(project(":micro-common"))
implementation(project(":common"))
}
File renamed without changes.
2 changes: 1 addition & 1 deletion micro-auth/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies {
implementation("com.github.ben-manes.caffeine:caffeine:3.1.8")
implementation("org.redisson:redisson:3.37.0")
implementation("com.nimbusds:nimbus-jose-jwt:9.41.2")
implementation(project(":micro-common"))
implementation(project(":common"))
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("org.springframework.security:spring-security-test")
}
Expand Down
2 changes: 1 addition & 1 deletion micro-blog/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies {
implementation("org.springframework.boot:spring-boot-starter-validation")
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.springframework.boot:spring-boot-starter-data-redis")
implementation(project(":micro-common"))
implementation(project(":common"))
runtimeOnly("org.mariadb.jdbc:mariadb-java-client")
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("org.springframework.amqp:spring-rabbit-test")
Expand Down
2 changes: 1 addition & 1 deletion micro-exhibit/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies {
implementation("org.springframework.boot:spring-boot-starter-aop")
implementation("org.springframework.boot:spring-boot-starter-validation")
implementation("org.springframework.boot:spring-boot-starter-web")
implementation(project(":micro-common"))
implementation(project(":common"))
implementation("org.redisson:redisson:3.37.0")
implementation("com.github.ben-manes.caffeine:caffeine:3.1.8")
testImplementation("org.springframework.boot:spring-boot-starter-test")
Expand Down
2 changes: 1 addition & 1 deletion micro-gateway/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version = "latest"

dependencies {
implementation("org.springframework.boot:spring-boot-starter-actuator")
implementation(project(":micro-common"))
implementation(project(":common"))
implementation("org.springframework.boot:spring-boot-starter-web")
testImplementation("org.springframework.boot:spring-boot-starter-test")
}
Expand Down
2 changes: 1 addition & 1 deletion micro-search/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies {
implementation("org.springframework.boot:spring-boot-starter-amqp")
implementation("org.springframework.boot:spring-boot-starter-validation")
implementation("org.springframework.boot:spring-boot-starter-web")
implementation(project(":micro-common"))
implementation(project(":common"))
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("org.springframework.amqp:spring-rabbit-test")
}
Expand Down
2 changes: 1 addition & 1 deletion micro-user/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies {
implementation("org.springframework.boot:spring-boot-starter-validation")
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.springframework.security:spring-security-crypto")
implementation(project(":micro-common"))
implementation(project(":common"))
runtimeOnly("org.mariadb.jdbc:mariadb-java-client")
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("org.springframework.amqp:spring-rabbit-test")
Expand Down
2 changes: 1 addition & 1 deletion micro-websocket/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies {
implementation("org.springframework.boot:spring-boot-starter-actuator")
implementation("org.springframework.boot:spring-boot-starter-data-redis")
implementation("org.springframework.boot:spring-boot-starter-websocket")
implementation(project(":micro-common"))
implementation(project(":common"))
testImplementation("org.springframework.boot:spring-boot-starter-test")
}

Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ include(
"micro-search",
"micro-websocket",
"micro-exhibit",
"micro-common")
"common")

0 comments on commit a32b174

Please sign in to comment.