apply from: "$rootProject.projectDir/gradle/javaProject.gradle" apply plugin: 'eclipse' eclipse.project.name = '_Skeleton' dependencies { compile project(':Base') } // We don't want this to build compileJava.enabled = false jar.enabled = false // NOTE: In a build, this file will get replaced by buildTemplate.gradle. rootProject.assembleDistribution { from (this.projectDir) { exclude 'bin' exclude 'build' exclude 'ghidra_scripts/bin/' exclude '.classpath' exclude '.project' rename "buildTemplate.gradle", "build.gradle" into "Extensions/Ghidra/Skeleton" } }