Skip to content

Commit

Permalink
chore: update build.gradle dependencies in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
timonback committed Nov 20, 2023
1 parent 51ced6a commit bbc03dc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
3 changes: 1 addition & 2 deletions springwolf-examples/springwolf-amqp-example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,10 @@ dependencies {
implementation "org.springframework.amqp:spring-rabbit"
implementation "org.slf4j:slf4j-api:${slf4jApiVersion}"
implementation "io.swagger.core.v3:swagger-annotations:${swaggerVersion}"
implementation "com.asyncapi:asyncapi-core:${asyncapiCoreVersion}"

implementation "org.springframework.amqp:spring-amqp"
implementation "org.springframework.boot:spring-boot-autoconfigure"
implementation "org.springframework.boot:spring-boot"
implementation "org.springframework:spring-beans"
implementation "org.springframework:spring-context"

testRuntimeOnly "org.junit.jupiter:junit-jupiter:${junitJupiterVersion}"
Expand All @@ -38,6 +36,7 @@ dependencies {
testImplementation "org.junit.jupiter:junit-jupiter-api:${junitJupiterVersion}"

testImplementation "org.springframework.boot:spring-boot-test"
testImplementation "org.springframework:spring-beans"
testImplementation "org.springframework:spring-web"
testImplementation "org.springframework:spring-test"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencyManagement {
}

dependencies {
implementation project(":springwolf-core")
testImplementation project(":springwolf-core")

runtimeOnly project(":springwolf-plugins:springwolf-cloud-stream")
annotationProcessor project(":springwolf-plugins:springwolf-cloud-stream")
Expand All @@ -27,16 +27,18 @@ dependencies {
runtimeOnly "org.springframework.boot:spring-boot-starter-web"
runtimeOnly "org.springframework.boot:spring-boot-starter-actuator"

implementation "com.asyncapi:asyncapi-core:${asyncapiCoreVersion}"
implementation "org.apache.kafka:kafka-streams:${kafkaStreamsVersion}"
implementation "org.slf4j:slf4j-api:${slf4jApiVersion}"
implementation "io.swagger.core.v3:swagger-annotations:${swaggerVersion}"

implementation "org.springframework.boot:spring-boot-autoconfigure"
implementation "org.springframework.boot:spring-boot"
implementation "org.springframework:spring-beans"
implementation "org.springframework:spring-context"

compileOnly "org.projectlombok:lombok:${lombokVersion}"

annotationProcessor "org.projectlombok:lombok:${lombokVersion}"

testImplementation "org.junit.jupiter:junit-jupiter-api:${junitJupiterVersion}"
testRuntimeOnly "org.junit.jupiter:junit-jupiter:${junitJupiterVersion}"

Expand All @@ -45,6 +47,7 @@ dependencies {
testImplementation "org.springframework.boot:spring-boot-test"
testImplementation "org.springframework:spring-test"

testImplementation "org.springframework:spring-beans"
testImplementation "org.springframework:spring-web"
testImplementation "org.springframework.kafka:spring-kafka-test"
testImplementation "org.testcontainers:testcontainers:${testcontainersVersion}"
Expand Down
2 changes: 0 additions & 2 deletions springwolf-examples/springwolf-kafka-example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ dependencies {

implementation "org.springframework:spring-beans"
implementation "org.springframework:spring-context"
implementation "org.springframework:spring-web"

implementation "org.springframework.boot:spring-boot"
implementation "org.springframework.boot:spring-boot-autoconfigure"
Expand All @@ -33,7 +32,6 @@ dependencies {
implementation "org.springframework.security:spring-security-config"
implementation "org.springframework.security:spring-security-web"

implementation "com.asyncapi:asyncapi-core:${asyncapiCoreVersion}"
implementation "io.swagger.core.v3:swagger-annotations:${swaggerVersion}"
implementation "org.slf4j:slf4j-api:${slf4jApiVersion}"

Expand Down

0 comments on commit bbc03dc

Please sign in to comment.