File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change
1
+ // file:noinspection GroovyAssignabilityCheck
2
+
1
3
plugins {
2
4
id ' java-gradle-plugin'
3
5
id ' com.gradle.plugin-publish' version ' 0.18.0'
@@ -30,10 +32,6 @@ configurations.all {
30
32
exclude group : " org.apache.logging.log4j" , module : " log4j-slf4j-impl"
31
33
}
32
34
33
- configurations {
34
- customCompile. extendsFrom api // then customCompile.setCanBeResolved == true
35
- }
36
-
37
35
/**
38
36
* Shadow plugin unpacks the nested `utbot-instrumentation-<version>.jar`.
39
37
* But we need it to be packed. Workaround: double-nest the jar.
@@ -48,9 +46,8 @@ task shadowBugWorkaround(type: Jar) {
48
46
// Documentation: https://imperceptiblethoughts.com/shadow/
49
47
shadowJar {
50
48
manifest {
51
- // 'Fat JAR' is needed in org.utbot.framework.codegen.model.util. DependencyUtilsKt.checkDependencyIsFatJar
49
+ // 'Fat JAR' is needed in DependencyUtilsKt.checkDependencyIsFatJar
52
50
attributes ' JAR-Type' : ' Fat JAR'
53
- attributes ' Class-Path' : project. configurations. customCompile. collect { it. getName() }. join(' ' )
54
51
}
55
52
archiveClassifier. set(' ' )
56
53
minimize()
You can’t perform that action at this time.
0 commit comments