Return-Path: Delivered-To: apmail-geronimo-dev-archive@www.apache.org Received: (qmail 91639 invoked from network); 18 May 2006 17:25:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 18 May 2006 17:25:43 -0000 Received: (qmail 20261 invoked by uid 500); 18 May 2006 17:25:39 -0000 Delivered-To: apmail-geronimo-dev-archive@geronimo.apache.org Received: (qmail 20215 invoked by uid 500); 18 May 2006 17:25:39 -0000 Mailing-List: contact dev-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@geronimo.apache.org List-Id: Delivered-To: mailing list dev@geronimo.apache.org Received: (qmail 20204 invoked by uid 99); 18 May 2006 17:25:38 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 May 2006 10:25:38 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [209.237.227.198] (HELO brutus.apache.org) (209.237.227.198) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 May 2006 10:25:37 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 35C747142A1 for ; Thu, 18 May 2006 17:25:06 +0000 (GMT) Message-ID: <31252695.1147973106203.JavaMail.jira@brutus> Date: Thu, 18 May 2006 17:25:06 +0000 (GMT+00:00) From: "Donald Woods (JIRA)" To: dev@geronimo.apache.org Subject: [jira] Commented: (GERONIMO-2038) assemblies\minimal-tomcat-server fails on windows due to file path length In-Reply-To: <9863774.1147944845896.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/GERONIMO-2038?page=comments#action_12412385 ] Donald Woods commented on GERONIMO-2038: ---------------------------------------- I'm not seeing this at all on WinXP Pro SP2 or Win2003 SP1. Command extensions should be enabled by default on XP and 2003. CMD.exe help output - Command Extensions are enabled by default. You may also disable extensions for a particular invocation by using the /E:OFF switch. You can enable or disable extensions for all invocations of CMD.EXE on a machine and/or user logon session by setting either or both of the following REG_DWORD values in the registry using REGEDT32.EXE: HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\EnableExtensions and/or HKEY_CURRENT_USER\Software\Microsoft\Command Processor\EnableExtensions to either 0x1 or 0x0. The user specific setting takes precedence over the machine setting. The command line switches take precedence over the registry settings. On Win2003, I'm checking out 1.1 under a directory path that is 52 chars long and its building fine. On WinXP, I'm checking out 1.1 under a directory path that is 29 chars long and its building fine. I'm using Maven 1.1 beta 2, but not calling it directly. I have a build.bat, which explictly enableextensions and sets up MAVEN_HOME and JAVA_HOME and then calls maven. Maybe adding the following to your maven.bat file will fix it - @setlocal enableextensions Here is a cleaned-up version of my build script - @setlocal enableextensions @set rc=0 set MAVEN_HOME=d:\maven11beta2 set JAVA_HOME=d:\j2sdk1.4.2_08 set PATH=%JAVA_HOME%\bin;%MAVEN_HOME%\bin;%PATH% set BLDTEMP=d:\temp\build_temp rd %BLDTEMP% /s /q 1>nul 2>&1 mkdir %BLDTEMP% 1>nul 2>&1 set MAVEN_OPTS=-Xms128m -Xmx512m -Djava.io.tmpdir=%BLDTEMP% @echo ------------------------------------------------------------------------------- @if "%1"=="quick" (goto buildquick) @if "%1"=="all" (goto buildall) @echo Performing normal build of Geronimo call maven m:clean-all -Djava.io.tmpdir=%BLDTEMP% call maven m:build-all -Dmaven.itest.skip=true -Djava.io.tmpdir=%BLDTEMP% @if not "%errorlevel%"=="0" (goto done) goto builddone :buildall @echo Performing full clean/rebuild of Geronimo call maven m:clean-all -Djava.io.tmpdir=%BLDTEMP% call maven m:rebuild-all -Dmaven.itest.skip=true -Djava.io.tmpdir=%BLDTEMP% @if not "%errorlevel%"=="0" (goto done) goto builddone :buildquick @echo Performing quick build of Geronimo call maven m:clean call maven m:build-all -Dmaven.test.skip=true -Dmaven.itest.skip=true -Djava.io.tmpdir=%BLDTEMP% @if not "%errorlevel%"=="0" (goto done) :builddone @echo ------------------------------------------------------------------------------- @if not "%1"=="all" (goto noeclipsesrc) @echo Performing Eclipse update of Geronimo call maven -o m:eclipse -Djava.io.tmpdir=%BLDTEMP% @if not "%errorlevel%"=="0" (goto error3) :noeclipsesrc :done @set rc=%errorlevel% @rd %BLDTEMP% /s /q 1>nul 2>&1 @echo. @echo -------------------------------------------------------------------------- @echo %~f0 - finished with RC=%rc% @echo -------------------------------------------------------------------------- @echo. @echo on @exit /B %rc% @endlocal > assemblies\minimal-tomcat-server fails on windows due to file path length > ------------------------------------------------------------------------- > > Key: GERONIMO-2038 > URL: http://issues.apache.org/jira/browse/GERONIMO-2038 > Project: Geronimo > Type: Bug > Security: public(Regular issues) > Components: buildsystem > Versions: 1.1 > Reporter: John Sisson > Assignee: John Sisson > Priority: Blocker > Fix For: 1.1 > > Build failed on windows with openejb patch. > It appears we have hit a filename limit again, as it failed because it couldn't delete C:\dev\geronimo\br\1.1\assemblies\minimal-tomcat-server\target > > When I shortened the directory name to min-tomcat-server and changed the artifact name to geronimo-tomcat-min it worked fine. > If there are no objections, I will commit a change that changes the tomcat and jetty minimal assemblies to use "min" rather than "minimal" in their names. > > C:\dev\geronimo\br\1.1>svn info > Path: . > URL: https://svn.apache.org/repos/asf/geronimo/branches/1.1 > Repository UUID: 13f79535-47bb-0310-9956-ffa450edef68 > Revision: 407390 > Node Kind: directory > Schedule: normal > Last Changed Author: kevan > Last Changed Rev: 407349 > Last Changed Date: 2006-05-18 04:30:34 +1000 (Thu, 18 May 2006) > Properties Last Updated: 2006-03-31 07:54:02 +1000 (Fri, 31 Mar 2006) > > ------------------------ > > 23:04:28,936 INFO [ReactorTag] +---------------------------------------- > 23:04:28,936 INFO [ReactorTag] +---------------------------------------- > 23:04:28,936 INFO [ReactorTag] +---------------------------------------- > 23:04:28,936 INFO [ReactorTag] +---------------------------------------- > 23:04:28,936 INFO [ReactorTag] +---------------------------------------- > 23:04:28,936 INFO [ReactorTag] +---------------------------------------- > 23:04:28,936 INFO [ReactorTag] +---------------------------------------- > 23:04:28,936 INFO [ReactorTag] +---------------------------------------- > 23:04:28,936 INFO [ReactorTag] +---------------------------------------- > 23:04:28,936 INFO [ReactorTag] +---------------------------------------- > 23:04:28,936 INFO [ReactorTag] +---------------------------------------- > 23:04:28,936 INFO [ReactorTag] +---------------------------------------- > 23:04:28,936 INFO [ReactorTag] +---------------------------------------- > 23:04:28,936 INFO [ReactorTag] +---------------------------------------- > 23:04:28,936 INFO [ReactorTag] +---------------------------------------- > 23:04:28,936 INFO [ReactorTag] +---------------------------------------- > | assemblies Geronimo Assembly for a Web Server running Tomcat > 23:04:28,936 INFO [ReactorTag] | assemblies Geronimo Assembly for a Web Server running Tomcat > 23:04:28,936 INFO [ReactorTag] | assemblies Geronimo Assembly for a Web Server running Tomcat > 23:04:28,936 INFO [ReactorTag] | assemblies Geronimo Assembly for a Web Server running Tomcat > 23:04:28,936 INFO [ReactorTag] | assemblies Geronimo Assembly for a Web Server running Tomcat > 23:04:28,936 INFO [ReactorTag] | assemblies Geronimo Assembly for a Web Server running Tomcat > 23:04:28,936 INFO [ReactorTag] | assemblies Geronimo Assembly for a Web Server running Tomcat > 23:04:28,936 INFO [ReactorTag] | assemblies Geronimo Assembly for a Web Server running Tomcat > 23:04:28,936 INFO [ReactorTag] | assemblies Geronimo Assembly for a Web Server running Tomcat > 23:04:28,936 INFO [ReactorTag] | assemblies Geronimo Assembly for a Web Server running Tomcat > 23:04:28,936 INFO [ReactorTag] | assemblies Geronimo Assembly for a Web Server running Tomcat > 23:04:28,936 INFO [ReactorTag] | assemblies Geronimo Assembly for a Web Server running Tomcat > 23:04:28,936 INFO [ReactorTag] | assemblies Geronimo Assembly for a Web Server running Tomcat > 23:04:28,936 INFO [ReactorTag] | assemblies Geronimo Assembly for a Web Server running Tomcat > 23:04:28,936 INFO [ReactorTag] | assemblies Geronimo Assembly for a Web Server running Tomcat > 23:04:28,936 INFO [ReactorTag] | assemblies Geronimo Assembly for a Web Server running Tomcat > 23:04:28,936 INFO [ReactorTag] | assemblies Geronimo Assembly for a Web Server running Tomcat > | Memory: 67M/107M > 23:04:28,952 INFO [ReactorTag] | Memory: 67M/107M > 23:04:28,952 INFO [ReactorTag] | Memory: 67M/107M > 23:04:28,952 INFO [ReactorTag] | Memory: 67M/107M > 23:04:28,952 INFO [ReactorTag] | Memory: 67M/107M > 23:04:28,952 INFO [ReactorTag] | Memory: 67M/107M > 23:04:28,952 INFO [ReactorTag] | Memory: 67M/107M > 23:04:28,952 INFO [ReactorTag] | Memory: 67M/107M > 23:04:28,952 INFO [ReactorTag] | Memory: 67M/107M > 23:04:28,952 INFO [ReactorTag] | Memory: 67M/107M > 23:04:28,952 INFO [ReactorTag] | Memory: 67M/107M > 23:04:28,952 INFO [ReactorTag] | Memory: 67M/107M > 23:04:28,952 INFO [ReactorTag] | Memory: 67M/107M > 23:04:28,952 INFO [ReactorTag] | Memory: 67M/107M > 23:04:28,952 INFO [ReactorTag] | Memory: 67M/107M > 23:04:28,952 INFO [ReactorTag] | Memory: 67M/107M > 23:04:28,952 INFO [ReactorTag] | Memory: 67M/107M > +---------------------------------------- > 23:04:28,952 INFO [ReactorTag] +---------------------------------------- > 23:04:28,952 INFO [ReactorTag] +---------------------------------------- > 23:04:28,952 INFO [ReactorTag] +---------------------------------------- > 23:04:28,952 INFO [ReactorTag] +---------------------------------------- > 23:04:28,952 INFO [ReactorTag] +---------------------------------------- > 23:04:28,952 INFO [ReactorTag] +---------------------------------------- > 23:04:28,952 INFO [ReactorTag] +---------------------------------------- > 23:04:28,952 INFO [ReactorTag] +---------------------------------------- > 23:04:28,952 INFO [ReactorTag] +---------------------------------------- > 23:04:28,952 INFO [ReactorTag] +---------------------------------------- > 23:04:28,952 INFO [ReactorTag] +---------------------------------------- > 23:04:28,952 INFO [ReactorTag] +---------------------------------------- > 23:04:28,952 INFO [ReactorTag] +---------------------------------------- > 23:04:28,952 INFO [ReactorTag] +---------------------------------------- > 23:04:28,952 INFO [ReactorTag] +---------------------------------------- > 23:04:28,952 INFO [ReactorTag] +---------------------------------------- > DEPRECATED: the default goal should be specified in the section of project.xml instead of maven.xml > 23:04:28,983 WARN [PluginScriptParser] DEPRECATED: the default goal should be specified in the section of project.xml inste > ad of maven.xml > 23:04:28,983 WARN [PluginScriptParser] DEPRECATED: the default goal should be specified in the section of project.xml inste > ad of maven.xml > 23:04:28,983 WARN [PluginScriptParser] DEPRECATED: the default goal should be specified in the section of project.xml inste > ad of maven.xml > 23:04:28,983 WARN [PluginScriptParser] DEPRECATED: the default goal should be specified in the section of project.xml inste > ad of maven.xml > 23:04:28,983 WARN [PluginScriptParser] DEPRECATED: the default goal should be specified in the section of project.xml inste > ad of maven.xml > 23:04:28,983 WARN [PluginScriptParser] DEPRECATED: the default goal should be specified in the section of project.xml inste > ad of maven.xml > 23:04:28,983 WARN [PluginScriptParser] DEPRECATED: the default goal should be specified in the section of project.xml inste > ad of maven.xml > 23:04:28,983 WARN [PluginScriptParser] DEPRECATED: the default goal should be specified in the section of project.xml inste > ad of maven.xml > 23:04:28,983 WARN [PluginScriptParser] DEPRECATED: the default goal should be specified in the section of project.xml inste > ad of maven.xml > 23:04:28,983 WARN [PluginScriptParser] DEPRECATED: the default goal should be specified in the section of project.xml inste > ad of maven.xml > 23:04:28,983 WARN [PluginScriptParser] DEPRECATED: the default goal should be specified in the section of project.xml inste > ad of maven.xml > 23:04:28,983 WARN [PluginScriptParser] DEPRECATED: the default goal should be specified in the section of project.xml inste > ad of maven.xml > 23:04:28,983 WARN [PluginScriptParser] DEPRECATED: the default goal should be specified in the section of project.xml inste > ad of maven.xml > 23:04:28,983 WARN [PluginScriptParser] DEPRECATED: the default goal should be specified in the section of project.xml inste > ad of maven.xml > 23:04:28,983 WARN [PluginScriptParser] DEPRECATED: the default goal should be specified in the section of project.xml inste > ad of maven.xml > 23:04:28,983 WARN [PluginScriptParser] DEPRECATED: the default goal should be specified in the section of project.xml inste > ad of maven.xml > DEPRECATED: the default goal should be specified in the section of project.xml instead of maven.xml > 23:04:28,983 WARN [PluginScriptParser] DEPRECATED: the default goal should be specified in the section of project.xml inste > ad of maven.xml > 23:04:28,983 WARN [PluginScriptParser] DEPRECATED: the default goal should be specified in the section of project.xml inste > ad of maven.xml > 23:04:28,983 WARN [PluginScriptParser] DEPRECATED: the default goal should be specified in the section of project.xml inste > ad of maven.xml > 23:04:28,983 WARN [PluginScriptParser] DEPRECATED: the default goal should be specified in the section of project.xml inste > ad of maven.xml > 23:04:28,983 WARN [PluginScriptParser] DEPRECATED: the default goal should be specified in the section of project.xml inste > ad of maven.xml > 23:04:28,983 WARN [PluginScriptParser] DEPRECATED: the default goal should be specified in the section of project.xml inste > ad of maven.xml > 23:04:28,983 WARN [PluginScriptParser] DEPRECATED: the default goal should be specified in the section of project.xml inste > ad of maven.xml > 23:04:28,983 WARN [PluginScriptParser] DEPRECATED: the default goal should be specified in the section of project.xml inste > ad of maven.xml > 23:04:28,983 WARN [PluginScriptParser] DEPRECATED: the default goal should be specified in the section of project.xml inste > ad of maven.xml > 23:04:28,983 WARN [PluginScriptParser] DEPRECATED: the default goal should be specified in the section of project.xml inste > ad of maven.xml > 23:04:28,983 WARN [PluginScriptParser] DEPRECATED: the default goal should be specified in the section of project.xml inste > ad of maven.xml > 23:04:28,983 WARN [PluginScriptParser] DEPRECATED: the default goal should be specified in the section of project.xml inste > ad of maven.xml > 23:04:28,983 WARN [PluginScriptParser] DEPRECATED: the default goal should be specified in the section of project.xml inste > ad of maven.xml > 23:04:28,983 WARN [PluginScriptParser] DEPRECATED: the default goal should be specified in the section of project.xml inste > ad of maven.xml > 23:04:28,983 WARN [PluginScriptParser] DEPRECATED: the default goal should be specified in the section of project.xml inste > ad of maven.xml > 23:04:28,983 WARN [PluginScriptParser] DEPRECATED: the default goal should be specified in the section of project.xml inste > ad of maven.xml > build:start: > > multiproject:install-callback: > [echo] Running assemble:install for Geronimo Assembly for a Web Server running Tomcat > clean:clean: > [delete] Deleting directory C:\dev\geronimo\br\1.1\assemblies\minimal-tomcat-server\target > > BUILD FAILED > org.apache.maven.werkz.UnattainableGoalException: Unable to obtain goal [multiproject:install-callback] -- C:\Documents and Settings > \sissonj\.geronimo-1.1.x-maven\cache\maven-clean-plugin-1.3\plugin.jelly:30:-1: Unable to delete directory C:\dev\geron > imo\br\1.1\assemblies\minimal-tomcat-server\target > at org.apache.maven.werkz.Goal.fire(Goal.java:663) > at org.apache.maven.werkz.Goal.attain(Goal.java:592) > at org.apache.maven.plugin.PluginManager.attainGoals(PluginManager.java:693) > at org.apache.maven.MavenSession.attainGoals(MavenSession.java:263) > at org.apache.maven.jelly.tags.maven.ReactorTag.doTag(ReactorTag.java:368) > at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:247) > at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) > at org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTag.java:78) > at org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.performAction(MavenGoalTag.java:109) > at org.apache.maven.werkz.Goal.fire(Goal.java:656) > at org.apache.maven.werkz.Goal.attain(Goal.java:592) > at org.apache.maven.werkz.WerkzProject.attainGoal(WerkzProject.java:210) > at org.apache.maven.jelly.tags.werkz.MavenAttainGoalTag.doTag(MavenAttainGoalTag.java:114) > at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:247) > at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) > at org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTag.java:78) > at org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.performAction(MavenGoalTag.java:109) > at org.apache.maven.werkz.Goal.fire(Goal.java:656) > at org.apache.maven.werkz.Goal.attain(Goal.java:592) > at org.apache.maven.plugin.PluginManager.attainGoals(PluginManager.java:693) > at org.apache.maven.MavenSession.attainGoals(MavenSession.java:263) > at org.apache.maven.cli.App.doMain(App.java:511) > at org.apache.maven.cli.App.main(App.java:1258) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:324) > at com.werken.forehead.Forehead.run(Forehead.java:551) > at com.werken.forehead.Forehead.main(Forehead.java:581) > org.apache.commons.jelly.JellyTagException: C:\Documents and Settings\sissonj\.geronimo-1.1.x-maven\cache\maven-clean-plugin-1.3\plu > gin.jelly:30:-1: Unable to delete directory C:\dev\geronimo\br\1.1\assemblies\minimal-tomcat-server\target > at org.apache.commons.jelly.impl.TagScript.handleException(TagScript.java:671) > at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:259) > at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) > at org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTag.java:78) > at org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.performAction(MavenGoalTag.java:109) > at org.apache.maven.werkz.Goal.fire(Goal.java:656) > at org.apache.maven.werkz.Goal.attain(Goal.java:592) > at org.apache.maven.werkz.Goal.attainPrecursors(Goal.java:505) > at org.apache.maven.werkz.Goal.attain(Goal.java:590) > at org.apache.maven.werkz.Goal.attainPrecursors(Goal.java:505) > at org.apache.maven.werkz.Goal.attain(Goal.java:590) > at org.apache.maven.werkz.WerkzProject.attainGoal(WerkzProject.java:210) > at org.apache.maven.jelly.tags.werkz.MavenAttainGoalTag.doTag(MavenAttainGoalTag.java:114) > at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:247) > at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) > at org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTag.java:78) > at org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.performAction(MavenGoalTag.java:109) > at org.apache.maven.werkz.Goal.fire(Goal.java:656) > at org.apache.maven.werkz.Goal.attain(Goal.java:592) > at org.apache.maven.plugin.PluginManager.attainGoals(PluginManager.java:693) > at org.apache.maven.MavenSession.attainGoals(MavenSession.java:263) > at org.apache.maven.jelly.tags.maven.ReactorTag.doTag(ReactorTag.java:368) > at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:247) > at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) > at org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTag.java:78) > at org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.performAction(MavenGoalTag.java:109) > at org.apache.maven.werkz.Goal.fire(Goal.java:656) > at org.apache.maven.werkz.Goal.attain(Goal.java:592) > at org.apache.maven.werkz.WerkzProject.attainGoal(WerkzProject.java:210) > at org.apache.maven.jelly.tags.werkz.MavenAttainGoalTag.doTag(MavenAttainGoalTag.java:114) > at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:247) > at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) > at org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTag.java:78) > at org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.performAction(MavenGoalTag.java:109) > at org.apache.maven.werkz.Goal.fire(Goal.java:656) > at org.apache.maven.werkz.Goal.attain(Goal.java:592) > at org.apache.maven.plugin.PluginManager.attainGoals(PluginManager.java:693) > at org.apache.maven.MavenSession.attainGoals(MavenSession.java:263) > at org.apache.maven.cli.App.doMain(App.java:511) > at org.apache.maven.cli.App.main(App.java:1258) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:324) > at com.werken.forehead.Forehead.run(Forehead.java:551) > at com.werken.forehead.Forehead.main(Forehead.java:581) > Caused by: Unable to delete directory C:\dev\geronimo\br\1.1\assemblies\minimal-tomcat-server\target > at org.apache.tools.ant.taskdefs.Delete.removeDir(Delete.java:607) > at org.apache.tools.ant.taskdefs.Delete.removeDir(Delete.java:587) > at org.apache.tools.ant.taskdefs.Delete.removeDir(Delete.java:587) > at org.apache.tools.ant.taskdefs.Delete.removeDir(Delete.java:587) > at org.apache.tools.ant.taskdefs.Delete.execute(Delete.java:498) > at org.apache.tools.ant.Task.perform(Task.java:364) > at org.apache.commons.jelly.tags.ant.AntTag.doTag(AntTag.java:195) > at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:247) > ... 44 more > Root cause > Unable to delete directory C:\dev\geronimo\br\1.1\assemblies\minimal-tomcat-server\target > at org.apache.tools.ant.taskdefs.Delete.removeDir(Delete.java:607) > at org.apache.tools.ant.taskdefs.Delete.removeDir(Delete.java:587) > at org.apache.tools.ant.taskdefs.Delete.removeDir(Delete.java:587) > at org.apache.tools.ant.taskdefs.Delete.removeDir(Delete.java:587) > at org.apache.tools.ant.taskdefs.Delete.execute(Delete.java:498) > at org.apache.tools.ant.Task.perform(Task.java:364) > at org.apache.commons.jelly.tags.ant.AntTag.doTag(AntTag.java:195) > at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:247) > at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) > at org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTag.java:78) > at org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.performAction(MavenGoalTag.java:109) > at org.apache.maven.werkz.Goal.fire(Goal.java:656) > at org.apache.maven.werkz.Goal.attain(Goal.java:592) > at org.apache.maven.werkz.Goal.attainPrecursors(Goal.java:505) > at org.apache.maven.werkz.Goal.attain(Goal.java:590) > at org.apache.maven.werkz.Goal.attainPrecursors(Goal.java:505) > at org.apache.maven.werkz.Goal.attain(Goal.java:590) > at org.apache.maven.werkz.WerkzProject.attainGoal(WerkzProject.java:210) > at org.apache.maven.jelly.tags.werkz.MavenAttainGoalTag.doTag(MavenAttainGoalTag.java:114) > at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:247) > at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) > at org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTag.java:78) > at org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.performAction(MavenGoalTag.java:109) > at org.apache.maven.werkz.Goal.fire(Goal.java:656) > at org.apache.maven.werkz.Goal.attain(Goal.java:592) > at org.apache.maven.plugin.PluginManager.attainGoals(PluginManager.java:693) > at org.apache.maven.MavenSession.attainGoals(MavenSession.java:263) > at org.apache.maven.jelly.tags.maven.ReactorTag.doTag(ReactorTag.java:368) > at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:247) > at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) > at org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTag.java:78) > at org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.performAction(MavenGoalTag.java:109) > at org.apache.maven.werkz.Goal.fire(Goal.java:656) > at org.apache.maven.werkz.Goal.attain(Goal.java:592) > at org.apache.maven.werkz.WerkzProject.attainGoal(WerkzProject.java:210) > at org.apache.maven.jelly.tags.werkz.MavenAttainGoalTag.doTag(MavenAttainGoalTag.java:114) > at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:247) > at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) > at org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTag.java:78) > at org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.performAction(MavenGoalTag.java:109) > at org.apache.maven.werkz.Goal.fire(Goal.java:656) > at org.apache.maven.werkz.Goal.attain(Goal.java:592) > at org.apache.maven.plugin.PluginManager.attainGoals(PluginManager.java:693) > at org.apache.maven.MavenSession.attainGoals(MavenSession.java:263) > at org.apache.maven.cli.App.doMain(App.java:511) > at org.apache.maven.cli.App.main(App.java:1258) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:324) > at com.werken.forehead.Forehead.run(Forehead.java:551) > at com.werken.forehead.Forehead.main(Forehead.java:581) > Root cause > Unable to delete directory C:\dev\geronimo\br\1.1\assemblies\minimal-tomcat-server\target > at org.apache.tools.ant.taskdefs.Delete.removeDir(Delete.java:607) > at org.apache.tools.ant.taskdefs.Delete.removeDir(Delete.java:587) > at org.apache.tools.ant.taskdefs.Delete.removeDir(Delete.java:587) > at org.apache.tools.ant.taskdefs.Delete.removeDir(Delete.java:587) > at org.apache.tools.ant.taskdefs.Delete.execute(Delete.java:498) > at org.apache.tools.ant.Task.perform(Task.java:364) > at org.apache.commons.jelly.tags.ant.AntTag.doTag(AntTag.java:195) > at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:247) > at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) > at org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTag.java:78) > at org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.performAction(MavenGoalTag.java:109) > at org.apache.maven.werkz.Goal.fire(Goal.java:656) > at org.apache.maven.werkz.Goal.attain(Goal.java:592) > at org.apache.maven.werkz.Goal.attainPrecursors(Goal.java:505) > at org.apache.maven.werkz.Goal.attain(Goal.java:590) > at org.apache.maven.werkz.Goal.attainPrecursors(Goal.java:505) > at org.apache.maven.werkz.Goal.attain(Goal.java:590) > at org.apache.maven.werkz.WerkzProject.attainGoal(WerkzProject.java:210) > at org.apache.maven.jelly.tags.werkz.MavenAttainGoalTag.doTag(MavenAttainGoalTag.java:114) > at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:247) > at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) > at org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTag.java:78) > at org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.performAction(MavenGoalTag.java:109) > at org.apache.maven.werkz.Goal.fire(Goal.java:656) > at org.apache.maven.werkz.Goal.attain(Goal.java:592) > at org.apache.maven.plugin.PluginManager.attainGoals(PluginManager.java:693) > at org.apache.maven.MavenSession.attainGoals(MavenSession.java:263) > at org.apache.maven.jelly.tags.maven.ReactorTag.doTag(ReactorTag.java:368) > at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:247) > at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) > at org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTag.java:78) > at org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.performAction(MavenGoalTag.java:109) > at org.apache.maven.werkz.Goal.fire(Goal.java:656) > at org.apache.maven.werkz.Goal.attain(Goal.java:592) > at org.apache.maven.werkz.WerkzProject.attainGoal(WerkzProject.java:210) > at org.apache.maven.jelly.tags.werkz.MavenAttainGoalTag.doTag(MavenAttainGoalTag.java:114) > at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:247) > at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) > at org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTag.java:78) > at org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.performAction(MavenGoalTag.java:109) > at org.apache.maven.werkz.Goal.fire(Goal.java:656) > at org.apache.maven.werkz.Goal.attain(Goal.java:592) > at org.apache.maven.plugin.PluginManager.attainGoals(PluginManager.java:693) > at org.apache.maven.MavenSession.attainGoals(MavenSession.java:263) > at org.apache.maven.cli.App.doMain(App.java:511) > at org.apache.maven.cli.App.main(App.java:1258) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:324) > at com.werken.forehead.Forehead.run(Forehead.java:551) > at com.werken.forehead.Forehead.main(Forehead.java:581) > File...... C:\dev\geronimo\br\1.1\maven.xml > Element... maven:reactor > Line...... 63 > Column.... -1 > Unable to obtain goal [multiproject:install-callback] -- C:\Documents and Settings\sissonj\.geronimo-1.1.x-maven\cache\maven-clean-p > lugin-1.3\plugin.jelly:30:-1: Unable to delete directory C:\dev\geronimo\br\1.1\assemblies\minimal-tomcat-server\target > > Total time : 33 minutes 53 seconds > 23:04:36,733 INFO [App] Total time : 33 minutes 53 seconds > 23:04:36,733 INFO [App] Total time : 33 minutes 53 seconds > 23:04:36,733 INFO [App] Total time : 33 minutes 53 seconds > 23:04:36,733 INFO [App] Total time : 33 minutes 53 seconds > 23:04:36,733 INFO [App] Total time : 33 minutes 53 seconds > 23:04:36,733 INFO [App] Total time : 33 minutes 53 seconds > 23:04:36,733 INFO [App] Total time : 33 minutes 53 seconds > 23:04:36,733 INFO [App] Total time : 33 minutes 53 seconds > 23:04:36,733 INFO [App] Total time : 33 minutes 53 seconds > 23:04:36,733 INFO [App] Total time : 33 minutes 53 seconds > 23:04:36,733 INFO [App] Total time : 33 minutes 53 seconds > 23:04:36,733 INFO [App] Total time : 33 minutes 53 seconds > 23:04:36,733 INFO [App] Total time : 33 minutes 53 seconds > 23:04:36,733 INFO [App] Total time : 33 minutes 53 seconds > 23:04:36,733 INFO [App] Total time : 33 minutes 53 seconds > 23:04:36,733 INFO [App] Total time : 33 minutes 53 seconds > Finished at : Wednesday, 17 May 2006 23:04:36 > 23:04:36,733 INFO [App] Finished at : Wednesday, 17 May 2006 23:04:36 > 23:04:36,733 INFO [App] Finished at : Wednesday, 17 May 2006 23:04:36 > 23:04:36,733 INFO [App] Finished at : Wednesday, 17 May 2006 23:04:36 > 23:04:36,733 INFO [App] Finished at : Wednesday, 17 May 2006 23:04:36 > 23:04:36,733 INFO [App] Finished at : Wednesday, 17 May 2006 23:04:36 > 23:04:36,733 INFO [App] Finished at : Wednesday, 17 May 2006 23:04:36 > 23:04:36,733 INFO [App] Finished at : Wednesday, 17 May 2006 23:04:36 > 23:04:36,733 INFO [App] Finished at : Wednesday, 17 May 2006 23:04:36 > 23:04:36,733 INFO [App] Finished at : Wednesday, 17 May 2006 23:04:36 > 23:04:36,733 INFO [App] Finished at : Wednesday, 17 May 2006 23:04:36 > 23:04:36,733 INFO [App] Finished at : Wednesday, 17 May 2006 23:04:36 > 23:04:36,733 INFO [App] Finished at : Wednesday, 17 May 2006 23:04:36 > 23:04:36,733 INFO [App] Finished at : Wednesday, 17 May 2006 23:04:36 > 23:04:36,733 INFO [App] Finished at : Wednesday, 17 May 2006 23:04:36 > 23:04:36,733 INFO [App] Finished at : Wednesday, 17 May 2006 23:04:36 > 23:04:36,733 INFO [App] Finished at : Wednesday, 17 May 2006 23:04:36 > > 23:04:36,733 INFO [App] > 23:04:36,733 INFO [App] > 23:04:36,733 INFO [App] > 23:04:36,733 INFO [App] > 23:04:36,733 INFO [App] > 23:04:36,733 INFO [App] > 23:04:36,733 INFO [App] > 23:04:36,733 INFO [App] > 23:04:36,733 INFO [App] > 23:04:36,733 INFO [App] > 23:04:36,733 INFO [App] > 23:04:36,733 INFO [App] > 23:04:36,733 INFO [App] > 23:04:36,733 INFO [App] > 23:04:36,733 INFO [App] > 23:04:36,733 INFO [App] > > C:\dev\geronimo\br\1.1> -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira