我正在使用 Groovy 的 AntBuilder 构建一个 Java 项目。在缺少看起来应该包含的类的地方发生错误。我想打印出包含在以下类路径闭包中的每个 JAR/WAR,但我不知道该怎么做。每次我尝试显示类路径的内容时,它都会显示为空。关于如何做到这一点的任何想法?
作为参考,这里是 java 构建任务和类路径。这发生在new AntBuilder().with { }
闭包内。
javac srcdir: sourceDir, destdir: destDir, debug: true, target: 1.6, fork: true, executable: getCompiler(), {
classpath {
libDirs.each { dir -> fileset dir: dir, includes: "*.jar,*.war" }
websphereLib.each { dir -> fileset dir: dir, includes: "*.jar*" }
if (springLib.exists()) { fileset dir: springLib, includes: "*.jar*" }
was_plugins_compile.each { pathelement location: was_plugins_dir + it }
if (webinf.exists()) { fileset dir: webinf, includes: "*.jar" }
if (webinfclasses.exists()) { pathelement location: webinfclasses }
}
}