Skip to content

Commit 6b9e67d

Browse files
Update dependencies
1 parent 7de4d48 commit 6b9e67d

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

build.gradle

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
2-
ext.springBootVersion = '3.+'
3-
ext.springCloudVersion = '2023.+'
2+
ext.springBootVersion = 'latest.release'
3+
ext.springCloudVersion = 'latest.release'
44

55
configurations.classpath {
66
resolutionStrategy.activateDependencyLocking()
@@ -47,6 +47,7 @@ dependencies {
4747

4848
implementation 'org.springframework.boot:spring-boot-starter-actuator'
4949
implementation 'org.springframework.boot:spring-boot-starter-web'
50+
implementation 'org.springframework.boot:spring-boot-starter-aop'
5051
implementation 'org.springframework.boot:spring-boot-starter-hateoas'
5152
implementation 'org.springframework.data:spring-data-commons'
5253
implementation 'org.springframework.cloud:spring-cloud-starter-openfeign'
@@ -57,7 +58,7 @@ dependencies {
5758

5859
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.+'
5960

60-
implementation ('io.micrometer:micrometer-tracing-bridge-brave') { exclude(group: 'io.zipkin.reporter2') }
61+
implementation 'io.micrometer:micrometer-tracing-bridge-brave'
6162
runtimeOnly 'io.micrometer:micrometer-registry-prometheus'
6263

6364
testImplementation 'org.junit.jupiter:junit-jupiter-api'

gradle.lockfile

+2
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ org.apache.tomcat.embed:tomcat-embed-core:10.1.28=compileClasspath,productionRun
6464
org.apache.tomcat.embed:tomcat-embed-el:10.1.28=compileClasspath,productionRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
6565
org.apache.tomcat.embed:tomcat-embed-websocket:10.1.28=compileClasspath,productionRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
6666
org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath
67+
org.aspectj:aspectjweaver:1.9.22.1=compileClasspath,productionRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
6768
org.assertj:assertj-core:3.25.3=testCompileClasspath,testRuntimeClasspath
6869
org.awaitility:awaitility:4.2.2=testCompileClasspath,testRuntimeClasspath
6970
org.bouncycastle:bcprov-jdk18on:1.78=compileClasspath,productionRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
@@ -100,6 +101,7 @@ org.springframework.boot:spring-boot-actuator:3.3.3=compileClasspath,productionR
100101
org.springframework.boot:spring-boot-autoconfigure:3.3.3=compileClasspath,productionRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
101102
org.springframework.boot:spring-boot-dependencies:3.3.3=annotationProcessor,compileClasspath,productionRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
102103
org.springframework.boot:spring-boot-starter-actuator:3.3.3=compileClasspath,productionRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
104+
org.springframework.boot:spring-boot-starter-aop:3.3.3=compileClasspath,productionRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
103105
org.springframework.boot:spring-boot-starter-hateoas:3.3.3=compileClasspath,productionRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
104106
org.springframework.boot:spring-boot-starter-json:3.3.3=compileClasspath,productionRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
105107
org.springframework.boot:spring-boot-starter-logging:3.3.3=compileClasspath,productionRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath

0 commit comments

Comments
 (0)