File tree 1 file changed +2
-19
lines changed
instrumentation/ratpack/ratpack-1.7/javaagent
1 file changed +2
-19
lines changed Original file line number Diff line number Diff line change @@ -14,34 +14,17 @@ dependencies {
14
14
library(" io.ratpack:ratpack-core:1.7.0" )
15
15
16
16
implementation(project(" :instrumentation:netty:netty-4.1:library" ))
17
- implementation(project(" :instrumentation:ratpack:ratpack-1.4:javaagent" ))
18
17
implementation(project(" :instrumentation:ratpack:ratpack-1.7:library" ))
19
18
20
- testImplementation(project(" :instrumentation:ratpack:ratpack-1.4:testing" ))
21
-
22
19
testLibrary(" io.ratpack:ratpack-test:1.7.0" )
20
+ testImplementation(project(" :instrumentation:ratpack:ratpack-1.4:testing" ))
21
+ testInstrumentation(project(" :instrumentation:ratpack:ratpack-1.4:javaagent" ))
23
22
24
23
if (JavaVersion .current().isCompatibleWith(JavaVersion .VERSION_11 )) {
25
24
testImplementation(" com.sun.activation:jakarta.activation:1.2.2" )
26
25
}
27
26
}
28
27
29
- // to allow all tests to pass we need to choose a specific netty version
30
- if (! (findProperty(" testLatestDeps" ) as Boolean )) {
31
- configurations.configureEach {
32
- if (! name.contains(" muzzle" )) {
33
- resolutionStrategy {
34
- eachDependency {
35
- // specifying a fixed version for all libraries with io.netty group
36
- if (requested.group == " io.netty" && requested.name != " netty-tcnative" ) {
37
- useVersion(" 4.1.37.Final" )
38
- }
39
- }
40
- }
41
- }
42
- }
43
- }
44
-
45
28
tasks {
46
29
withType<Test >().configureEach {
47
30
systemProperty(" testLatestDeps" , findProperty(" testLatestDeps" ) as Boolean )
You can’t perform that action at this time.
0 commit comments