We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 520468e commit aa7610eCopy full SHA for aa7610e
plugin/build.gradle
@@ -96,10 +96,21 @@ dependencies {
96
*/
97
}
98
99
-// comfiguration of classpathes for plugin integration tests
+// configuration of classpath for plugin integration tests
100
101
configurations {
102
- testPluginClasspath
+ testPluginClasspath {
103
+ attributes {
104
+ attribute(
105
+ Usage.USAGE_ATTRIBUTE,
106
+ project.objects.named(Usage.class, Usage.JAVA_RUNTIME)
107
+ )
108
109
+ Category.CATEGORY_ATTRIBUTE,
110
+ project.objects.named(Category.class, Category.LIBRARY)
111
112
+ }
113
114
115
116
dependencies {
0 commit comments