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

hboutemy pushed a commit to annotated tag maven-invoker-plugin-1.0
in repository https://gitbox.apache.org/repos/asf/maven-invoker-plugin.git

commit 610c6544af783a1364afffb25aa16a23411ea1cb
Author: Vincent Massol <vmas...@apache.org>
AuthorDate: Tue Oct 3 15:05:51 2006 +0000

    MNG-2587: [maven-invoker-plugin] build.log file should not be placed inside 
the target/ directory
    
    The build.log file is now created in the project's top level dir (next to 
pom.xml). Another solution would be to create those build.log files in the 
calling project's target dir and name them with some unique name pointing to 
the project they're logging...
    
    git-svn-id: 
https://svn.apache.org/repos/asf/maven/sandbox/plugins/maven-invoker-plugin@452524
 13f79535-47bb-0310-9956-ffa450edef68
---
 src/main/java/org/apache/maven/plugin/invoker/InvokerMojo.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/maven/plugin/invoker/InvokerMojo.java 
b/src/main/java/org/apache/maven/plugin/invoker/InvokerMojo.java
index 236436b..3eff874 100644
--- a/src/main/java/org/apache/maven/plugin/invoker/InvokerMojo.java
+++ b/src/main/java/org/apache/maven/plugin/invoker/InvokerMojo.java
@@ -232,7 +232,7 @@ public class InvokerMojo
 
         getLog().info( "Building: " + pom );
 
-        final File outputLog = new File( basedir, "target/build.log" );
+        final File outputLog = new File( basedir, "build.log" );
 
         FileLogger logger = null;
 

-- 
To stop receiving notification emails like this one, please contact
"commits@maven.apache.org" <commits@maven.apache.org>.

Reply via email to