Skip to content

Commit ecd3338

Browse files
Fixed test, added missing instrumentPluginClasspath to the test build.gradle
1 parent 944815e commit ecd3338

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

buildSrc/src/test/groovy/InstrumentPluginTest.groovy

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@ class InstrumentPluginTest extends Specification {
2626
compileOnly group: 'net.bytebuddy', name: 'byte-buddy', version: '1.18.1' // just to build TestPlugin
2727
}
2828
29-
apply plugin: 'instrument'
29+
configurations {
30+
instrumentPluginClasspath {
31+
canBeResolved = true
32+
}
33+
}
3034
3135
instrument.plugins = [
3236
'TestPlugin'

0 commit comments

Comments
 (0)