我的问题没有回答问题How can I get Gradle ant logging to work?和Gradle: Get Ant Task Output。
build.xml
<project>
<target name="build">
<mkdir dir="dest"/>
<javac srcdir="src" destdir="dest" includeAntRuntime="false"/>
<copy todir="dest" >
<fileset dir="src" casesensitive="no">
<include name="**/*.properties"/>
</fileset>
</copy>
<jar destfile="MyJar.jar">
<fileset dir="dest"/>
</jar>
</target>
</project>
ant build
的输出有一些不错的细节Buildfile: /some/path/build.xml
build:
[mkdir] Created dir: /some/path/dest
[javac] Compiling 25 source files to /some/path/dest
[copy] Copying 3 files to /some/path/dest
[jar] Building jar: /some/path/MyJar.jar
BUILD SUCCESSFUL
Total time: 0 seconds
build.gradle
ant.importBuild 'build.xml'
gradle build
的输出缺少一些细节:build
BUILD SUCCESSFUL
Total time: 1.638 secs
我们可以注意到有关命令mkdir
,javac
,copy
和jar
的缺失行。
--info
过于冗长> gradle --info build
Starting Build
Settings evaluated using settings file '/master/settings.gradle'.
Projects loaded. Root project using build file '/some/path/build.gradle'.
Included projects: [root project 'o']
Evaluating root project 'o' using build file '/some/path/build.gradle'.
Compiling build file '/some/path/build.gradle' using SubsetScriptTransformer.
Compiling build file '/some/path/build.gradle' using BuildScriptTransformer.
All projects evaluated.
Selected primary task 'build' from project :
Tasks to be executed: [task ':build']
:build (Thread[main,5,main]) started.
:build
Executing task ':build' (up-to-date check took 0.001 secs) due to:
Task has not declared any outputs.
[ant:mkdir] Created dir: /some/path/dest
[ant:javac] Compiling 25 source files to /some/path/dest
[ant:copy] Copying 3 files to /some/path/dest
[ant:jar] Building jar: /some/path/MyJar.jar
:build (Thread[main,5,main]) completed. Took 0.646 secs.
BUILD SUCCESSFUL
Total time: 1.947 secs
答案 0 :(得分:0)
我在这里分享我的解决方案,如果这可以帮助其他人。
这取决于Gradle的版本!
在脚本build.gradle
中提升任务构建的日志级别(Ant目标):
ant.importBuild 'build.xml'
build.logging.level = LogLevel.INFO
gradle build
的输出现在类似于ant build
:build
[ant:mkdir] Created dir: /some/path/dest
[ant:javac] Compiling 25 source files to /some/path/dest
[ant:copy] Copying 3 files to /some/path/dest
[ant:jar] Building jar: /some/path/MyJar.jar
BUILD SUCCESSFUL
Total time: 1.692 secs
在脚本ant.lifecycleLogLevel = "INFO"
中添加build.gradle
:
ant.importBuild 'build.xml'
ant.lifecycleLogLevel = "INFO"
gradle build
:build
[ant:mkdir] Created dir: /some/path/dest
[ant:javac] Compiling 25 source files to /some/path/dest
[ant:copy] Copying 3 files to /some/path/dest
[ant:jar] Building jar: /some/path/MyJar.jar
BUILD SUCCESSFUL
Total time: 0.531 secs