You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2021/04/23 10:29:10 UTC

[maven-plugin-tools] branch dependencies updated: Show output in case of failure

This is an automated email from the ASF dual-hosted git repository.

rfscholte pushed a commit to branch dependencies
in repository https://gitbox.apache.org/repos/asf/maven-plugin-tools.git


The following commit(s) were added to refs/heads/dependencies by this push:
     new d88a197  Show output in case of failure
d88a197 is described below

commit d88a19726fce2b0abc0b3573646aa16ff3eab07f
Author: rfscholte <rf...@apache.org>
AuthorDate: Fri Apr 23 12:28:52 2021 +0200

    Show output in case of failure
---
 maven-plugin-plugin/src/it/ant-basic/verify.groovy | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/maven-plugin-plugin/src/it/ant-basic/verify.groovy b/maven-plugin-plugin/src/it/ant-basic/verify.groovy
index 71ea7e1..c916192 100644
--- a/maven-plugin-plugin/src/it/ant-basic/verify.groovy
+++ b/maven-plugin-plugin/src/it/ant-basic/verify.groovy
@@ -18,13 +18,10 @@
  */
 
 File touchFile = new File( basedir, "target/touch.txt" )
-assert touchFile.isFile()
+assert touchFile.isFile() : new File( basedir, 'build.log').text
 
 File descriptorFile = new File( basedir, "target/classes/META-INF/maven/plugin.xml" );
 assert descriptorFile.isFile()
 
 File oldHelpClass = new File( basedir, "target/classes/HelpMojo.class" );
 assert !oldHelpClass.exists()
-
-
-return true;