From d16e82d468eb0d5bb1e662ac4812c0ca6fc0fc64 Mon Sep 17 00:00:00 2001 From: Yaroslav Date: Tue, 25 Feb 2020 14:47:03 +0300 Subject: reorganized repo to be easier to use with GNU stow; added script to stow --- .../neomake/makers/ft/java/classpath.gradle | 46 ---------------------- 1 file changed, 46 deletions(-) delete mode 100644 .vim/autoload/neomake/makers/ft/java/classpath.gradle (limited to '.vim/autoload/neomake/makers/ft/java/classpath.gradle') diff --git a/.vim/autoload/neomake/makers/ft/java/classpath.gradle b/.vim/autoload/neomake/makers/ft/java/classpath.gradle deleted file mode 100644 index f548c0d..0000000 --- a/.vim/autoload/neomake/makers/ft/java/classpath.gradle +++ /dev/null @@ -1,46 +0,0 @@ -task classpath << { - - String finalFileContents = "" - HashSet classpathFiles = new HashSet() - for (proj in allprojects) { - - def exploded = proj.getBuildDir().absolutePath + File.separator + "intermediates" + File.separator + "exploded-aar" - def listFiles = new File(exploded) - if (listFiles.exists()) { - listFiles.eachFileRecurse(){ file -> - if (file.name.endsWith(".jar")){ - classpathFiles += file - } - } - } - - def rjava = proj.getBuildDir().absolutePath + File.separator + "intermediates" + File.separator + "classes" + File.separator + "debug" - def rFiles = new File(rjava) - if (rFiles.exists()) { - classpathFiles += rFiles - } - - for (conf in proj.configurations) { - for (dependency in conf) { - if (dependency.name.endsWith("aar")){ - } else { - classpathFiles += dependency - } - } - } - if (proj.hasProperty("android")){ - classpathFiles += proj.android.bootClasspath - } - - if (proj.hasProperty("sourceSets")) { - - for (srcSet in proj.sourceSets) { - for (dir in srcSet.java.srcDirs) { - classpathFiles += dir.absolutePath - } - } - } - } - def paths = classpathFiles.join(File.pathSeparator) - println "CLASSPATH:" + paths -} -- cgit v1.2.3