Commit 6323dc4e authored by Andy Wilkinson's avatar Andy Wilkinson

Reduce logging that is produced when building Gradle plugin

Travis is terminating builds as they are producing too much logging.
A major contributor to the volume of logging is the Gradle plugin's
build. This commit switches off debug logging for the build and
enables test event logging. This considerably reduces the volume of
logging that is produced while still providing some insight into the
build's tests.
parent 508aac08
...@@ -23,6 +23,12 @@ jar { ...@@ -23,6 +23,12 @@ jar {
} }
} }
test {
testLogging {
events "passed", "skipped", "failed"
}
}
eclipseJdt { eclipseJdt {
inputFile = rootProject.file('../../eclipse/org.eclipse.jdt.core.prefs') inputFile = rootProject.file('../../eclipse/org.eclipse.jdt.core.prefs')
doLast { doLast {
......
...@@ -76,7 +76,6 @@ ...@@ -76,7 +76,6 @@
<argument>${gradle.task}</argument> <argument>${gradle.task}</argument>
<argument>-Pversion=${project.version}</argument> <argument>-Pversion=${project.version}</argument>
<argument>-Pdescription=${project.description}</argument> <argument>-Pdescription=${project.description}</argument>
<argument>-d</argument>
<argument>-S</argument> <argument>-S</argument>
</arguments> </arguments>
</configuration> </configuration>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment