File tree Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -65,6 +65,12 @@ dependencies {
6565 testRuntimeOnly(" org.junit.platform:junit-platform-launcher" )
6666}
6767
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+
6874gradlePlugin {
6975 plugins {
7076 annotationProcessorPlugin {
@@ -134,8 +140,12 @@ test {
134140 useJUnitPlatform()
135141}
136142
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+ }
141151}
You can’t perform that action at this time.
0 commit comments