File tree 1 file changed +14
-4
lines changed
1 file changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -65,6 +65,12 @@ dependencies {
65
65
testRuntimeOnly(" org.junit.platform:junit-platform-launcher" )
66
66
}
67
67
68
+ configurations. all {
69
+ exclude group :" org.slf4j" , module :" slf4j-api"
70
+ exclude group :" ch.qos.logback" , module :" logback-classic"
71
+ exclude group :" ch.qos.logback" , module :" logback-core"
72
+ }
73
+
68
74
gradlePlugin {
69
75
plugins {
70
76
annotationProcessorPlugin {
@@ -134,8 +140,12 @@ test {
134
140
useJUnitPlatform()
135
141
}
136
142
137
- eclipse. classpath. file. whenMerged {
138
- def jreEntry = entries. find { it. path. contains(" org.eclipse.jdt.launching.JRE_CONTAINER" ) }
139
- jreEntry. entryAttributes[' module' ] = ' true'
140
- jreEntry. entryAttributes[' limit-modules' ] = ' java.base'
143
+ eclipse {
144
+ jdt {
145
+ file {
146
+ withProperties {
147
+ it[" org.eclipse.jdt.core.compiler.ignoreUnnamedModuleForSplitPackage" ] = " enabled"
148
+ }
149
+ }
150
+ }
141
151
}
You can’t perform that action at this time.
0 commit comments