1 import java.nio.file.Files
2 import java.nio.file.StandardOpenOption
5 apply plugin: 'eclipse'
6 apply plugin: 'cc.squirreljme.plugin.general'
8 group = "cc.squirreljme"
9 description = "SquirrelJME is a Java ME 8 Virtual Machine for embedded " +
10 "and Internet of Things devices. It has the ultimate goal of being " +
11 "99.9% compatible with the Java ME standard."
12 version = squirreljmeVersion
14 // IntelliJ Configuration (because the root project is a bit different)
19 // Use the proper name for this module
22 // Exclude these directories so IntelliJ does not pick these up
23 // in inspections and builds
24 excludeDirs += file(".circleci")
25 excludeDirs += file(".fossil-settings")
26 excludeDirs += file(".github")
27 excludeDirs += file(".idea")
28 excludeDirs += file(".vscode")
29 excludeDirs += file(".settings")
30 excludeDirs += file("assets")
31 excludeDirs += file("config")
32 excludeDirs += file("gradle")
33 excludeDirs += file("utils-dev")
35 // These are auto-generated by Fossil and should be ignored
36 excludeDirs += file("manifest")
37 excludeDirs += file("manifest.uuid")
40 excludeDirs += file("ratufacoat/build")
41 excludeDirs += file("ratufacoat/cmake-build-debug")
42 excludeDirs += file("ratufacoat/cmake-build-release")
43 excludeDirs += file("ratufacoat/.sample")
45 // IntelliJ's own dependency matrix output (in "out")
46 project.allprojects.each() { Project subProj ->
47 excludeDirs += subProj.projectDir.toPath().resolve("out").toFile()
50 excludeDirs += subProj.projectDir.toPath().resolve(".settings").toFile()
51 excludeDirs += subProj.projectDir.toPath().resolve("bin").toFile()
57 apply plugin: 'eclipse'
65 plugins.withType(JavaPlugin) {
66 def settingsDir = projectDir.toPath().resolve(".settings")
67 def buildShipPrefs = settingsDir.resolve("org.eclipse.buildship.core.prefs")
68 def pathToRoot = projectDir.toPath().relativize(rootDir.toPath())
71 task cleanEclipseFixBuild {
73 description "Cleans up after build fixes."
76 // Just delete the buildship preferences
77 Files.deleteIfExists(buildShipPrefs)
82 task eclipseFixBuild {
84 description "Fixes Eclipse build due to missing expected files."
86 // If clean and such is ran, this must always be followed by it
87 // since we could accidentally destroy it
88 mustRunAfter cleanEclipseFixBuild, cleanEclipseJdt
91 // Setup settings directory first
92 Files.createDirectories(settingsDir)
94 // Write missing Eclipse file
98 "connection.project.dir=" + pathToRoot,
99 "eclipse.preferences.version=1"),
100 StandardOpenOption.CREATE,
101 StandardOpenOption.WRITE,
102 StandardOpenOption.TRUNCATE_EXISTING)
106 // Fix for cyclic dependencies
108 // We are a Java 8 project
109 sourceCompatibility = 1.8
110 targetCompatibility = 1.8
112 // Fix for Eclipse and VSCode breaking on "circular" dependencies
113 file.withProperties { properties ->
114 properties["org.eclipse.jdt.core.builder.invalidClasspath"] = "warning"
115 properties["org.eclipse.jdt.core.circularClasspath"] = "warning"
116 properties["org.eclipse.jdt.core.classpath.outputOverlappingAnotherSource"] = "warning"
120 eclipseJdt.finalizedBy(eclipseFixBuild)
121 cleanEclipseJdt.finalizedBy(cleanEclipseFixBuild)
125 // Generic root clean task, does nothing by default and just depends on
127 tasks.register('clean') {