diff --git a/build.third_step1-jdk11.gradle b/build.third_step1-jdk11.gradle index aa8a583ef..a2ea5ed00 100644 --- a/build.third_step1-jdk11.gradle +++ b/build.third_step1-jdk11.gradle @@ -127,6 +127,7 @@ dependencies{ //指明无法编译文件所在路径 def dataContent = { def dir -> copySpec{ + println("------------------------------------------------copySpec from ${dir}") from ("${dir}"){ exclude '**/.setting/**','.classpath','.project','**/*.java','**/*.db','**/*.g','**/package.html' } @@ -135,7 +136,7 @@ def dataContent = { def dir -> task copyFiles(type:Copy,dependsOn:'compileJava'){ copy{ - println "------------------------------------------------copyfiles" + println("------------------------------------------------copyfiles into ${classesDir}") with dataContent.call("${srcDir}/fine-antlr4/src") with dataContent.call("${srcDir}/fine-antlr-old/src/main/java") with dataContent.call("${srcDir}/fine-asm/src")