Browse Source

Document spring-rmi latest dep limit (#7774)

Lauri Tulmin 2 years ago
parent
commit
c5649cc987
1 changed files with 4 additions and 3 deletions
  1. 4 3
      instrumentation/spring/spring-rmi-4.0/javaagent/build.gradle.kts

+ 4 - 3
instrumentation/spring/spring-rmi-4.0/javaagent/build.gradle.kts

@@ -21,9 +21,10 @@ dependencies {
   library("org.springframework:spring-aop:4.0.0.RELEASE")
   testLibrary("org.springframework.boot:spring-boot:1.1.0.RELEASE")
 
-  latestDepTestLibrary("org.springframework:spring-context:5.+")
-  latestDepTestLibrary("org.springframework:spring-aop:5.+")
-  latestDepTestLibrary("org.springframework.boot:spring-boot:2.+")
+  // rmi remoting was removed in spring 6
+  latestDepTestLibrary("org.springframework:spring-context:5.+") // documented limitation
+  latestDepTestLibrary("org.springframework:spring-aop:5.+") // documented limitation
+  latestDepTestLibrary("org.springframework.boot:spring-boot:2.+") // documented limitation
 }
 
 tasks.withType<Test>().configureEach {