Removed eclipse stuff from gradle (was giving warnings and completely unused)

This commit is contained in:
Collin Smith
2019-06-24 03:25:43 -07:00
parent bd6758626d
commit cc2ea8ba00
10 changed files with 0 additions and 165 deletions

View File

@ -26,21 +26,3 @@ task dist(type: Jar) {
}
dist.dependsOn classes
eclipse {
project {
name = appName + "-mpqviewer"
linkedResource name: 'assets', type: '2', location: 'PARENT-1-PROJECT_LOC/android/assets'
}
}
task afterEclipseImport(description: "Post processing after project generation", group: "IDE") {
doLast {
def classpath = new XmlParser().parse(file(".classpath"))
new Node(classpath, "classpathentry", [ kind: 'src', path: 'assets' ]);
def writer = new FileWriter(file(".classpath"))
def printer = new XmlNodePrinter(new PrintWriter(writer))
printer.setPreserveWhitespace(true)
printer.print(classpath)
}
}