mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Temporarily fix build on eclipse so I may work...
Signed-off-by: Joshua Castle <26531652+Kas-tle@users.noreply.github.com>
This commit is contained in:
parent
f59d72843f
commit
e077407a1a
1 changed files with 11 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
||||||
plugins {
|
plugins {
|
||||||
`java-library`
|
`java-library`
|
||||||
|
`eclipse`
|
||||||
id("net.kyori.indra")
|
id("net.kyori.indra")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -35,3 +36,13 @@ tasks {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
eclipse {
|
||||||
|
classpath.file.whenMerged {
|
||||||
|
(this as org.gradle.plugins.ide.eclipse.model.Classpath).entries.forEach { entry ->
|
||||||
|
if (entry is org.gradle.plugins.ide.eclipse.model.Library) {
|
||||||
|
entry.entryAttributes["module"] = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue