如何获得“gradle”具有与“ant”类似的输出细节?

时间:2017-01-03 11:31:41

标签: gradle ant build.gradle build.xml

我的问题没有回答问题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

我们可以注意到有关命令mkdirjavaccopyjar的缺失行。

选项--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

1 个答案:

答案 0 :(得分:0)

我在这里分享我的解决方案,如果这可以帮助其他人。

这取决于Gradle的版本!

使用Gradle 2.13

在脚本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

使用Gradle 3.2

在脚本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