Blame | Last modification | View Log | RSS feed
apply plugin: "java"sourceCompatibility = 1.6sourceSets.main.java.srcDirs = [ "src/" ]project.ext.mainClassName = "com.gebauz.petnpurr.desktop.DesktopLauncher"project.ext.assetsDir = new File("../android/assets");task run(dependsOn: classes, type: JavaExec) {main = project.mainClassNameclasspath = sourceSets.main.runtimeClasspathstandardInput = System.inworkingDir = project.assetsDirignoreExitValue = true}task dist(type: Jar) {from files(sourceSets.main.output.classesDir)from files(sourceSets.main.output.resourcesDir)from {configurations.compile.collect {zipTree(it)}}from files(project.assetsDir);manifest {attributes 'Main-Class': project.mainClassName}}dist.dependsOn classeseclipse {project {name = appName + "-desktop"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)}}