You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@geronimo.apache.org by Rob Kenworthy <rk...@hotmail.com> on 2006/01/11 04:28:08 UTC

Geronimo build question

Hi,

John Sisson has asked me to send an email to this list as a result of my 
posting on theserverside 
(http://www.theserverside.com/tss?service=direct/0/PostNewsReply/postReply&sp=l38463&sp=F&sp=l196734#196680)

I am having problems doing a simple Geronimo build of 1.0 final.

Here is the info that John requested:

Q: Are you using the 1.0 final release or a release candidate?
A: 1.0 Final release.

Q: What platform are you building on (Windows XP, Linux..)?
A: Windows 2000

Q: Do you want to build from the command line or were you wanting to use an 
IDE to debug etc?
A: Command line. The BUILDING.txt file says to use Maven 1.0.2 or later and 
use JDK 1.4.x. So I set my path to the bin directory of Maven and set 
JAVA_HOME appropriately. Then run Maven from the geronimo directory. I 
figure that is all I should need to do.

The errors I am getting are unsatisfied class dependencies for a file called 
GenerateServiceXml.java. The dependencies are actually in one of the maven 
jars, but it doesn't seem to be in the classpath. I did try renaming the 
file to ...java.bak and ran it again. It got much further, but other class 
compilations depend on GenerateServiceXml.java, so it blew up again.

Any help would be appreciated.

Thanks,
Rob



Re: Geronimo build question

Posted by John Sisson <jr...@gmail.com>.
I will test building from the zipped src distribution (let me know if 
you got the source from subversion instead) using a fresh install of 
maven 1.0.2. 

I'll get back to you after further investigation.

John

Rob Kenworthy wrote:

> Hi,
>
> John Sisson has asked me to send an email to this list as a result of 
> my posting on theserverside 
> (http://www.theserverside.com/tss?service=direct/0/PostNewsReply/postReply&sp=l38463&sp=F&sp=l196734#196680) 
>
>
> I am having problems doing a simple Geronimo build of 1.0 final.
>
> Here is the info that John requested:
>
> Q: Are you using the 1.0 final release or a release candidate?
> A: 1.0 Final release.
>
> Q: What platform are you building on (Windows XP, Linux..)?
> A: Windows 2000
>
> Q: Do you want to build from the command line or were you wanting to 
> use an IDE to debug etc?
> A: Command line. The BUILDING.txt file says to use Maven 1.0.2 or 
> later and use JDK 1.4.x. So I set my path to the bin directory of 
> Maven and set JAVA_HOME appropriately. Then run Maven from the 
> geronimo directory. I figure that is all I should need to do.
>
> The errors I am getting are unsatisfied class dependencies for a file 
> called GenerateServiceXml.java. The dependencies are actually in one 
> of the maven jars, but it doesn't seem to be in the classpath. I did 
> try renaming the file to ...java.bak and ran it again. It got much 
> further, but other class compilations depend on 
> GenerateServiceXml.java, so it blew up again.
>
> Any help would be appreciated.
>
> Thanks,
> Rob
>
>
>


Re: Geronimo build question

Posted by Bruce Snyder <br...@gmail.com>.
On 1/11/06, Bruce Snyder <br...@gmail.com> wrote:
> On 1/10/06, Rob Kenworthy <rk...@hotmail.com> wrote:
>
>
> > The errors I am getting are unsatisfied class dependencies for a file called
> > GenerateServiceXml.java. The dependencies are actually in one of the maven
> > jars, but it doesn't seem to be in the classpath. I did try renaming the
> > file to ...java.bak and ran it again. It got much further, but other class
> > compilations depend on GenerateServiceXml.java, so it blew up again.
>
> Last night I was fighting the same error. The GenerateServiceXml class
> is part of the geronimo-dependency-plugin for Maven so it's got
> something to do with that.
>
> Before building the Geronimo source code, you need to build all of the
> Geronimo plugins for Maven by hand. These plugins are in the plugins
> directory and can be built by simply running the default goal for each
> plugin.

Damn, I guess I cursed myself by sending this before my build was
finished because it still failed with the same error:

<dependency:generateServiceXml> Unresolved compilation problem:

I'm still digging and will follow up as and when I figure it out.

Bruce
--
perl -e 'print unpack("u30","D0G)U8V4\@4VYY9&5R\"F)R=6-E+G-N>61E<D\!G;6%I;\"YC;VT*"
);'

Apache Geronimo (http://geronimo.apache.org/)

Castor (http://castor.org/)

Re: Geronimo build question

Posted by Rob Kenworthy <rk...@hotmail.com>.
Hi John, the output of java -version is as follows.

java version "1.4.2_04"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_04-b05)
Java HotSpot(TM) Client VM (build 1.4.2_04-b05, mixed mode)

I am currently download 1.4.2_10 to test with a later JDK.

I'll be interested to hear about your results with building the distro.

Bruce, I tried building the each plugin separately, but it blew up on 
geronimo-dependency-plugin.

What JDK are you using?


----Original Message Follows----
From: Bruce Snyder <br...@gmail.com>
Reply-To: user@geronimo.apache.org
To: user@geronimo.apache.org
Subject: Re: Geronimo build question
Date: Wed, 11 Jan 2006 16:51:00 -0700

On 1/10/06, Rob Kenworthy <rk...@hotmail.com> wrote:


 > The errors I am getting are unsatisfied class dependencies for a file 
called
 > GenerateServiceXml.java. The dependencies are actually in one of the 
maven
 > jars, but it doesn't seem to be in the classpath. I did try renaming the
 > file to ...java.bak and ran it again. It got much further, but other 
class
 > compilations depend on GenerateServiceXml.java, so it blew up again.

Last night I was fighting the same error. The GenerateServiceXml class
is part of the geronimo-dependency-plugin for Maven so it's got
something to do with that.

Before building the Geronimo source code, you need to build all of the
Geronimo plugins for Maven by hand. These plugins are in the plugins
directory and can be built by simply running the default goal for each
plugin.

After doing this the error seemed to disappear for me. However, I'm
currently midstream in performing a full build using the following
command:

maven -Dmaven.{i,}test.skip=true new

This command calls a Maven goal named 'new' and will do a full build
of Geronimo. Start with the items I've mentioned here and let's see
what results you get.

Bruce
--
perl -e 'print 
unpack("u30","D0G)U8V4\@4VYY9&5R\"F)R=6-E+G-N>61E<D\!G;6%I;\"YC;VT*"
);'

Apache Geronimo (http://geronimo.apache.org/)

Castor (http://castor.org/)



Re: Geronimo build question

Posted by Bruce Snyder <br...@gmail.com>.
On 1/10/06, Rob Kenworthy <rk...@hotmail.com> wrote:


> The errors I am getting are unsatisfied class dependencies for a file called
> GenerateServiceXml.java. The dependencies are actually in one of the maven
> jars, but it doesn't seem to be in the classpath. I did try renaming the
> file to ...java.bak and ran it again. It got much further, but other class
> compilations depend on GenerateServiceXml.java, so it blew up again.

Last night I was fighting the same error. The GenerateServiceXml class
is part of the geronimo-dependency-plugin for Maven so it's got
something to do with that.

Before building the Geronimo source code, you need to build all of the
Geronimo plugins for Maven by hand. These plugins are in the plugins
directory and can be built by simply running the default goal for each
plugin.

After doing this the error seemed to disappear for me. However, I'm
currently midstream in performing a full build using the following
command:

maven -Dmaven.{i,}test.skip=true new

This command calls a Maven goal named 'new' and will do a full build
of Geronimo. Start with the items I've mentioned here and let's see
what results you get.

Bruce
--
perl -e 'print unpack("u30","D0G)U8V4\@4VYY9&5R\"F)R=6-E+G-N>61E<D\!G;6%I;\"YC;VT*"
);'

Apache Geronimo (http://geronimo.apache.org/)

Castor (http://castor.org/)

Re: Geronimo build question

Posted by Rob Kenworthy <rk...@hotmail.com>.
Thanks for the suggestion Aaron, but there are no spaces in the path to the 
project. If you have time, I would be interested to see if you can download 
and build Geronimo 1.0 final release.

Rob

----Original Message Follows----
From: Aaron Mulder <am...@alumni.princeton.edu>
Reply-To: user@geronimo.apache.org
To: user@geronimo.apache.org
Subject: Re: Geronimo build question
Date: Wed, 11 Jan 2006 17:41:57 -0500

Are there any spaces in the name of the directory that the Geronimo
source (or Maven) are in?  If so, can you try renaming them to a path
with no spaces in the name?  I'll admit this is a knee-jerk reaction,
but I haven't seen the problem you describe before.  (Though, I also
haven't tried building from the 1.0 source distribution as opposed to
a checkout from SVN.)

Aaron

On 1/10/06, Rob Kenworthy <rk...@hotmail.com> wrote:
 > Hi,
 >
 > John Sisson has asked me to send an email to this list as a result of my
 > posting on theserverside
 > 
(http://www.theserverside.com/tss?service=direct/0/PostNewsReply/postReply&sp=l38463&sp=F&sp=l196734#196680)
 >
 > I am having problems doing a simple Geronimo build of 1.0 final.
 >
 > Here is the info that John requested:
 >
 > Q: Are you using the 1.0 final release or a release candidate?
 > A: 1.0 Final release.
 >
 > Q: What platform are you building on (Windows XP, Linux..)?
 > A: Windows 2000
 >
 > Q: Do you want to build from the command line or were you wanting to use 
an
 > IDE to debug etc?
 > A: Command line. The BUILDING.txt file says to use Maven 1.0.2 or later 
and
 > use JDK 1.4.x. So I set my path to the bin directory of Maven and set
 > JAVA_HOME appropriately. Then run Maven from the geronimo directory. I
 > figure that is all I should need to do.
 >
 > The errors I am getting are unsatisfied class dependencies for a file 
called
 > GenerateServiceXml.java. The dependencies are actually in one of the 
maven
 > jars, but it doesn't seem to be in the classpath. I did try renaming the
 > file to ...java.bak and ran it again. It got much further, but other 
class
 > compilations depend on GenerateServiceXml.java, so it blew up again.
 >
 > Any help would be appreciated.
 >
 > Thanks,
 > Rob
 >
 >
 >



Re: Geronimo build question

Posted by Aaron Mulder <am...@alumni.princeton.edu>.
Are there any spaces in the name of the directory that the Geronimo
source (or Maven) are in?  If so, can you try renaming them to a path
with no spaces in the name?  I'll admit this is a knee-jerk reaction,
but I haven't seen the problem you describe before.  (Though, I also
haven't tried building from the 1.0 source distribution as opposed to
a checkout from SVN.)

Aaron

On 1/10/06, Rob Kenworthy <rk...@hotmail.com> wrote:
> Hi,
>
> John Sisson has asked me to send an email to this list as a result of my
> posting on theserverside
> (http://www.theserverside.com/tss?service=direct/0/PostNewsReply/postReply&sp=l38463&sp=F&sp=l196734#196680)
>
> I am having problems doing a simple Geronimo build of 1.0 final.
>
> Here is the info that John requested:
>
> Q: Are you using the 1.0 final release or a release candidate?
> A: 1.0 Final release.
>
> Q: What platform are you building on (Windows XP, Linux..)?
> A: Windows 2000
>
> Q: Do you want to build from the command line or were you wanting to use an
> IDE to debug etc?
> A: Command line. The BUILDING.txt file says to use Maven 1.0.2 or later and
> use JDK 1.4.x. So I set my path to the bin directory of Maven and set
> JAVA_HOME appropriately. Then run Maven from the geronimo directory. I
> figure that is all I should need to do.
>
> The errors I am getting are unsatisfied class dependencies for a file called
> GenerateServiceXml.java. The dependencies are actually in one of the maven
> jars, but it doesn't seem to be in the classpath. I did try renaming the
> file to ...java.bak and ran it again. It got much further, but other class
> compilations depend on GenerateServiceXml.java, so it blew up again.
>
> Any help would be appreciated.
>
> Thanks,
> Rob
>
>
>

Re: Geronimo build question

Posted by Rob Kenworthy <rk...@hotmail.com>.
Here you go. Its just the tail end of the output, but I think it should 
everything you are looking for:

20:18:58,218 DEBUG [PluginManager] running script C:\Documents and 
Settings\est\
.maven\cache\maven-jar-plugin-1.6.1\plugin.jelly
20:18:58,218 DEBUG [PluginManager] running script C:\Documents and 
Settings\est\
.maven\cache\maven-jar-plugin-1.6.1\plugin.jelly
Plugin context for maven-artifact-plugin already initialised for this base 
conte
xt
20:18:58,218 DEBUG [PluginManager] Plugin context for maven-artifact-plugin 
alre
ady initialised for this base context
20:18:58,218 DEBUG [PluginManager] Plugin context for maven-artifact-plugin 
alre
ady initialised for this base context
plugin:plugin:
java:prepare-filesystem:
    [mkdir] Created dir: 
E:\temp\geronimo-1.0-src\plugins\geronimo-dependency-pl
ugin\target\classes

java:compile:
    [echo] Compiling to 
E:\temp\geronimo-1.0-src\plugins\geronimo-dependency-plu
gin/target/classes
    [javac] [DEBUG] fileset: Setup scanner in dir 
E:\temp\geronimo-1.0-src\plugi
ns\geronimo-dependency-plugin\src\java with patternSet{ includes: [] 
excludes: [
**/package.html] }
    [javac] [VERBOSE] 
org\apache\geronimo\plugin\dependency\GenerateServiceXml.j
ava added as org/apache/geronimo/plugin/dependency/GenerateServiceXml.class 
does
n't exist.
    [javac] Compiling 1 source file to 
E:\temp\geronimo-1.0-src\plugins\geronimo
-dependency-plugin\target\classes
    [javac] [VERBOSE] Using modern compiler
    [javac] [VERBOSE] Compilation arguments:
'-d'
'E:\temp\geronimo-1.0-src\plugins\geronimo-dependency-plugin\target\classes'
'-classpath'
'E:\temp\geronimo-1.0-src\plugins\geronimo-dependency-plugin\target\classes;C:\D
ocuments and 
Settings\est\.maven\repository\xmlbeans\jars\xbean-2.0.0.jar;C:\Doc
uments and 
Settings\est\.maven\repository\stax\jars\stax-api-1.0.jar;C:\Document
s and Settings\est\.maven\repository\maven\jars\maven-1.0.2.jar;C:\Documents 
and
Settings\est\.maven\repository\geronimo\jars\geronimo-service-builder-1.0.jar;E
:\java\maven-1.0.2\lib\forehead-1.0-beta-5.jar'
'-sourcepath'
'E:\temp\geronimo-1.0-src\plugins\geronimo-dependency-plugin\src\java'
'-target'
'1.4'
'-g'
'-source'
'1.4'

The ' characters around the executable and arguments are
not part of the command.

    [javac] [VERBOSE] File to be compiled:
    
E:\temp\geronimo-1.0-src\plugins\geronimo-dependency-plugin\src\java\org\apa
che\geronimo\plugin\dependency\GenerateServiceXml.java

E:\temp\geronimo-1.0-src\plugins\geronimo-dependency-plugin\src\java\org\apache\
geronimo\plugin\dependency\GenerateServiceXml.java:26: package 
org.apache.maven.
project does not exist
import org.apache.maven.project.Dependency;
                                ^
E:\temp\geronimo-1.0-src\plugins\geronimo-dependency-plugin\src\java\org\apache\
geronimo\plugin\dependency\GenerateServiceXml.java:27: package 
org.apache.maven.
repository does not exist
import org.apache.maven.repository.Artifact;
                                   ^
E:\temp\geronimo-1.0-src\plugins\geronimo-dependency-plugin\src\java\org\apache\
geronimo\plugin\dependency\GenerateServiceXml.java:67: cannot resolve symbol
symbol  : class Artifact
location: class org.apache.geronimo.plugin.dependency.GenerateServiceXml
            Artifact artifact = (Artifact) iterator.next();
            ^
E:\temp\geronimo-1.0-src\plugins\geronimo-dependency-plugin\src\java\org\apache\
geronimo\plugin\dependency\GenerateServiceXml.java:67: cannot resolve symbol
symbol  : class Artifact
location: class org.apache.geronimo.plugin.dependency.GenerateServiceXml
            Artifact artifact = (Artifact) iterator.next();
                                 ^
E:\temp\geronimo-1.0-src\plugins\geronimo-dependency-plugin\src\java\org\apache\
geronimo\plugin\dependency\GenerateServiceXml.java:68: cannot resolve symbol
symbol  : class Dependency
location: class org.apache.geronimo.plugin.dependency.GenerateServiceXml
            Dependency dependency = (Dependency) artifact.getDependency();
            ^
E:\temp\geronimo-1.0-src\plugins\geronimo-dependency-plugin\src\java\org\apache\
geronimo\plugin\dependency\GenerateServiceXml.java:68: cannot resolve symbol
symbol  : class Dependency
location: class org.apache.geronimo.plugin.dependency.GenerateServiceXml
            Dependency dependency = (Dependency) artifact.getDependency();
                                     ^
6 errors
popping off org.apache.maven.jelly.MavenJellyContext@1bbad6f for 
org.apache.mave
n.jelly.MavenJellyContext@17779e3 in 
maven-artifact-plugin:maven-artifact-plugin

20:18:58,406 DEBUG [Project] popping off 
org.apache.maven.jelly.MavenJellyContex
t@1bbad6f for org.apache.maven.jelly.MavenJellyContext@17779e3 in 
maven-artifact
-plugin:maven-artifact-plugin
20:18:58,406 DEBUG [Project] popping off 
org.apache.maven.jelly.MavenJellyContex
t@1bbad6f for org.apache.maven.jelly.MavenJellyContext@17779e3 in 
maven-artifact
-plugin:maven-artifact-plugin
popping off org.apache.maven.jelly.MavenJellyContext@778590 for 
org.apache.maven
.jelly.MavenJellyContext@c6eff5 in 
maven-multiproject-plugin:maven-multiproject-
plugin
20:18:58,406 DEBUG [Project] popping off 
org.apache.maven.jelly.MavenJellyContex
t@778590 for org.apache.maven.jelly.MavenJellyContext@c6eff5 in 
maven-multiproje
ct-plugin:maven-multiproject-plugin
20:18:58,406 DEBUG [Project] popping off 
org.apache.maven.jelly.MavenJellyContex
t@778590 for org.apache.maven.jelly.MavenJellyContext@c6eff5 in 
maven-multiproje
ct-plugin:maven-multiproject-plugin
popping off org.apache.maven.jelly.MavenJellyContext@22b7f8 for 
org.apache.maven
.jelly.MavenJellyContext@4cd580 in maven-xdoc-plugin:maven-xdoc-plugin
20:18:58,406 DEBUG [Project] popping off 
org.apache.maven.jelly.MavenJellyContex
t@22b7f8 for org.apache.maven.jelly.MavenJellyContext@4cd580 in 
maven-xdoc-plugi
n:maven-xdoc-plugin
20:18:58,406 DEBUG [Project] popping off 
org.apache.maven.jelly.MavenJellyContex
t@22b7f8 for org.apache.maven.jelly.MavenJellyContext@4cd580 in 
maven-xdoc-plugi
n:maven-xdoc-plugin
popping off org.apache.maven.jelly.MavenJellyContext@18d3d6c for 
org.apache.mave
n.jelly.MavenJellyContext@1827d1 in maven-pom-plugin:maven-pom-plugin
20:18:58,406 DEBUG [Project] popping off 
org.apache.maven.jelly.MavenJellyContex
t@18d3d6c for org.apache.maven.jelly.MavenJellyContext@1827d1 in 
maven-pom-plugi
n:maven-pom-plugin
20:18:58,406 DEBUG [Project] popping off 
org.apache.maven.jelly.MavenJellyContex
t@18d3d6c for org.apache.maven.jelly.MavenJellyContext@1827d1 in 
maven-pom-plugi
n:maven-pom-plugin
popping off org.apache.maven.jelly.MavenJellyContext@17a33f2 for 
org.apache.mave
n.jelly.MavenJellyContext@1e89539 in geronimo:geronimo-dependency-plugin
20:18:58,406 DEBUG [Project] popping off 
org.apache.maven.jelly.MavenJellyContex
t@17a33f2 for org.apache.maven.jelly.MavenJellyContext@1e89539 in 
geronimo:geron
imo-dependency-plugin
20:18:58,406 DEBUG [Project] popping off 
org.apache.maven.jelly.MavenJellyContex
t@17a33f2 for org.apache.maven.jelly.MavenJellyContext@1e89539 in 
geronimo:geron
imo-dependency-plugin
popping off org.apache.maven.jelly.MavenJellyContext@ec6b00 for 
org.apache.maven
.jelly.MavenJellyContext@164dbd5 in geronimo:geronimo
20:18:58,406 DEBUG [Project] popping off 
org.apache.maven.jelly.MavenJellyContex
t@ec6b00 for org.apache.maven.jelly.MavenJellyContext@164dbd5 in 
geronimo:geroni
mo
20:18:58,406 DEBUG [Project] popping off 
org.apache.maven.jelly.MavenJellyContex
t@ec6b00 for org.apache.maven.jelly.MavenJellyContext@164dbd5 in 
geronimo:geroni
mo

BUILD FAILED
File...... E:\temp\geronimo-1.0-src\maven.xml
Element... maven:reactor
Line...... 43
Column.... 154
Unable to obtain goal [multiproject:install-callback] -- C:\Documents and 
Settin
gs\est\.maven\cache\maven-java-plugin-1.5\plugin.jelly:63:48: <ant:javac> 
Compil
e failed; see the compiler error output for details.
com.werken.werkz.UnattainableGoalException: Unable to obtain goal [new] -- 
E:\te
mp\geronimo-1.0-src\maven.xml:43:154: <maven:reactor> Reactor subproject 
failure
occurred
        at com.werken.werkz.Goal.fire(Goal.java:646)
        at com.werken.werkz.Goal.attain(Goal.java:575)
        at 
org.apache.maven.plugin.PluginManager.attainGoals(PluginManager.java:
671)
        at org.apache.maven.MavenSession.attainGoals(MavenSession.java:263)
        at org.apache.maven.cli.App.doMain(App.java:488)
        at org.apache.maven.cli.App.main(App.java:1239)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
java:39)
        at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.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: 
E:\temp\geronimo-1.0-src\maven.xml:4
3:154: <maven:reactor> Reactor subproject failure occurred
        at 
org.apache.maven.jelly.tags.maven.ReactorTag.doTag(ReactorTag.java:37
8)
        at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
        at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTa
g.java:79)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.perfor
mAction(MavenGoalTag.java:110)
        at com.werken.werkz.Goal.fire(Goal.java:639)
        at com.werken.werkz.Goal.attain(Goal.java:575)
        at com.werken.werkz.WerkzProject.attainGoal(WerkzProject.java:193)
        at 
org.apache.maven.jelly.tags.werkz.MavenAttainGoalTag.doTag(MavenAttai
nGoalTag.java:127)
        at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
        at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTa
g.java:79)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.perfor
mAction(MavenGoalTag.java:110)
        at com.werken.werkz.Goal.fire(Goal.java:639)
        at com.werken.werkz.Goal.attain(Goal.java:575)
        at 
org.apache.maven.plugin.PluginManager.attainGoals(PluginManager.java:
671)
        at org.apache.maven.MavenSession.attainGoals(MavenSession.java:263)
        at org.apache.maven.cli.App.doMain(App.java:488)
        at org.apache.maven.cli.App.main(App.java:1239)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
java:39)
        at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.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: com.werken.werkz.UnattainableGoalException: Unable to obtain goal 
[mu
ltiproject:install-callback] -- C:\Documents and 
Settings\est\.maven\cache\maven
-java-plugin-1.5\plugin.jelly:63:48: <ant:javac> Compile failed; see the 
compile
r error output for details.
        at com.werken.werkz.Goal.fire(Goal.java:646)
        at com.werken.werkz.Goal.attain(Goal.java:575)
        at 
org.apache.maven.plugin.PluginManager.attainGoals(PluginManager.java:
671)
        at org.apache.maven.MavenSession.attainGoals(MavenSession.java:263)
        at 
org.apache.maven.jelly.tags.maven.ReactorTag.doTag(ReactorTag.java:36
8)
        ... 24 more
Root cause
com.werken.werkz.UnattainableGoalException: Unable to obtain goal 
[multiproject:
install-callback] -- C:\Documents and 
Settings\est\.maven\cache\maven-java-plugi
n-1.5\plugin.jelly:63:48: <ant:javac> Compile failed; see the compiler error 
out
put for details.
        at com.werken.werkz.Goal.fire(Goal.java:646)
        at com.werken.werkz.Goal.attain(Goal.java:575)
        at 
org.apache.maven.plugin.PluginManager.attainGoals(PluginManager.java:
671)
        at org.apache.maven.MavenSession.attainGoals(MavenSession.java:263)
        at 
org.apache.maven.jelly.tags.maven.ReactorTag.doTag(ReactorTag.java:36
8)
        at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
        at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTa
g.java:79)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.perfor
mAction(MavenGoalTag.java:110)
        at com.werken.werkz.Goal.fire(Goal.java:639)
        at com.werken.werkz.Goal.attain(Goal.java:575)
        at com.werken.werkz.WerkzProject.attainGoal(WerkzProject.java:193)
        at 
org.apache.maven.jelly.tags.werkz.MavenAttainGoalTag.doTag(MavenAttai
nGoalTag.java:127)
        at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
        at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTa
g.java:79)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.perfor
mAction(MavenGoalTag.java:110)
        at com.werken.werkz.Goal.fire(Goal.java:639)
        at com.werken.werkz.Goal.attain(Goal.java:575)
        at 
org.apache.maven.plugin.PluginManager.attainGoals(PluginManager.java:
671)
        at org.apache.maven.MavenSession.attainGoals(MavenSession.java:263)
        at org.apache.maven.cli.App.doMain(App.java:488)
        at org.apache.maven.cli.App.main(App.java:1239)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
java:39)
        at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.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
com.werken.werkz.UnattainableGoalException: Unable to obtain goal 
[multiproject:
install-callback] -- C:\Documents and 
Settings\est\.maven\cache\maven-java-plugi
n-1.5\plugin.jelly:63:48: <ant:javac> Compile failed; see the compiler error 
out
put for details.
        at com.werken.werkz.Goal.fire(Goal.java:646)
        at com.werken.werkz.Goal.attain(Goal.java:575)
        at 
org.apache.maven.plugin.PluginManager.attainGoals(PluginManager.java:
671)
        at org.apache.maven.MavenSession.attainGoals(MavenSession.java:263)
        at 
org.apache.maven.jelly.tags.maven.ReactorTag.doTag(ReactorTag.java:36
8)
        at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
        at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTa
g.java:79)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.perfor
mAction(MavenGoalTag.java:110)
        at com.werken.werkz.Goal.fire(Goal.java:639)
        at com.werken.werkz.Goal.attain(Goal.java:575)
        at com.werken.werkz.WerkzProject.attainGoal(WerkzProject.java:193)
        at 
org.apache.maven.jelly.tags.werkz.MavenAttainGoalTag.doTag(MavenAttai
nGoalTag.java:127)
        at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
        at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTa
g.java:79)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.perfor
mAction(MavenGoalTag.java:110)
        at com.werken.werkz.Goal.fire(Goal.java:639)
        at com.werken.werkz.Goal.attain(Goal.java:575)
        at 
org.apache.maven.plugin.PluginManager.attainGoals(PluginManager.java:
671)
        at org.apache.maven.MavenSession.attainGoals(MavenSession.java:263)
        at org.apache.maven.cli.App.doMain(App.java:488)
        at org.apache.maven.cli.App.main(App.java:1239)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
java:39)
        at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.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\est\.maven
\cache\maven-java-plugin-1.5\plugin.jelly:63:48: <ant:javac> Compile failed; 
see
the compiler error output for details.
        at 
org.apache.commons.jelly.impl.TagScript.handleException(TagScript.jav
a:683)
        at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:288)
        at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
        at 
org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:233)
        at org.apache.commons.jelly.tags.core.WhenTag.doTag(WhenTag.java:92)
        at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
        at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
        at 
org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:233)
        at 
org.apache.commons.jelly.tags.core.ChooseTag.doTag(ChooseTag.java:84)

        at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
        at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTa
g.java:79)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.perfor
mAction(MavenGoalTag.java:110)
        at com.werken.werkz.Goal.fire(Goal.java:639)
        at com.werken.werkz.Goal.attain(Goal.java:575)
        at com.werken.werkz.Goal.attainPrecursors(Goal.java:488)
        at com.werken.werkz.Goal.attain(Goal.java:573)
        at com.werken.werkz.Goal.attainPrecursors(Goal.java:488)
        at com.werken.werkz.Goal.attain(Goal.java:573)
        at com.werken.werkz.Goal.attainPrecursors(Goal.java:488)
        at com.werken.werkz.Goal.attain(Goal.java:573)
        at com.werken.werkz.WerkzProject.attainGoal(WerkzProject.java:193)
        at 
org.apache.maven.jelly.tags.werkz.MavenAttainGoalTag.doTag(MavenAttai
nGoalTag.java:127)
        at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
        at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTa
g.java:79)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.perfor
mAction(MavenGoalTag.java:110)
        at com.werken.werkz.Goal.fire(Goal.java:639)
        at com.werken.werkz.Goal.attain(Goal.java:575)
        at com.werken.werkz.Goal.attainPrecursors(Goal.java:488)
        at com.werken.werkz.Goal.attain(Goal.java:573)
        at com.werken.werkz.WerkzProject.attainGoal(WerkzProject.java:193)
        at 
org.apache.maven.jelly.tags.werkz.MavenAttainGoalTag.doTag(MavenAttai
nGoalTag.java:127)
        at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
        at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTa
g.java:79)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.perfor
mAction(MavenGoalTag.java:110)
        at com.werken.werkz.Goal.fire(Goal.java:639)
        at com.werken.werkz.Goal.attain(Goal.java:575)
        at 
org.apache.maven.plugin.PluginManager.attainGoals(PluginManager.java:
671)
        at org.apache.maven.MavenSession.attainGoals(MavenSession.java:263)
        at 
org.apache.maven.jelly.tags.maven.ReactorTag.doTag(ReactorTag.java:36
8)
        at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
        at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTa
g.java:79)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.perfor
mAction(MavenGoalTag.java:110)
        at com.werken.werkz.Goal.fire(Goal.java:639)
        at com.werken.werkz.Goal.attain(Goal.java:575)
        at com.werken.werkz.WerkzProject.attainGoal(WerkzProject.java:193)
        at 
org.apache.maven.jelly.tags.werkz.MavenAttainGoalTag.doTag(MavenAttai
nGoalTag.java:127)
        at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
        at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTa
g.java:79)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.perfor
mAction(MavenGoalTag.java:110)
        at com.werken.werkz.Goal.fire(Goal.java:639)
        at com.werken.werkz.Goal.attain(Goal.java:575)
        at 
org.apache.maven.plugin.PluginManager.attainGoals(PluginManager.java:
671)
        at org.apache.maven.MavenSession.attainGoals(MavenSession.java:263)
        at org.apache.maven.cli.App.doMain(App.java:488)
        at org.apache.maven.cli.App.main(App.java:1239)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
java:39)
        at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.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: Compile failed; see the compiler error output for details.
        at org.apache.tools.ant.taskdefs.Javac.compile(Javac.java:844)
        at org.apache.tools.ant.taskdefs.Javac.execute(Javac.java:682)
        at org.apache.tools.ant.Task.perform(Task.java:341)
        at org.apache.commons.jelly.tags.ant.AntTag.doTag(AntTag.java:185)
        at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
        ... 64 more
Root cause
Compile failed; see the compiler error output for details.
        at org.apache.tools.ant.taskdefs.Javac.compile(Javac.java:844)
        at org.apache.tools.ant.taskdefs.Javac.execute(Javac.java:682)
        at org.apache.tools.ant.Task.perform(Task.java:341)
        at org.apache.commons.jelly.tags.ant.AntTag.doTag(AntTag.java:185)
        at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
        at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
        at 
org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:233)
        at org.apache.commons.jelly.tags.core.WhenTag.doTag(WhenTag.java:92)
        at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
        at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
        at 
org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:233)
        at 
org.apache.commons.jelly.tags.core.ChooseTag.doTag(ChooseTag.java:84)

        at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
        at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTa
g.java:79)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.perfor
mAction(MavenGoalTag.java:110)
        at com.werken.werkz.Goal.fire(Goal.java:639)
        at com.werken.werkz.Goal.attain(Goal.java:575)
        at com.werken.werkz.Goal.attainPrecursors(Goal.java:488)
        at com.werken.werkz.Goal.attain(Goal.java:573)
        at com.werken.werkz.Goal.attainPrecursors(Goal.java:488)
        at com.werken.werkz.Goal.attain(Goal.java:573)
        at com.werken.werkz.Goal.attainPrecursors(Goal.java:488)
        at com.werken.werkz.Goal.attain(Goal.java:573)
        at com.werken.werkz.WerkzProject.attainGoal(WerkzProject.java:193)
        at 
org.apache.maven.jelly.tags.werkz.MavenAttainGoalTag.doTag(MavenAttai
nGoalTag.java:127)
        at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
        at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTa
g.java:79)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.perfor
mAction(MavenGoalTag.java:110)
        at com.werken.werkz.Goal.fire(Goal.java:639)
        at com.werken.werkz.Goal.attain(Goal.java:575)
        at com.werken.werkz.Goal.attainPrecursors(Goal.java:488)
        at com.werken.werkz.Goal.attain(Goal.java:573)
        at com.werken.werkz.WerkzProject.attainGoal(WerkzProject.java:193)
        at 
org.apache.maven.jelly.tags.werkz.MavenAttainGoalTag.doTag(MavenAttai
nGoalTag.java:127)
        at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
        at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTa
g.java:79)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.perfor
mAction(MavenGoalTag.java:110)
        at com.werken.werkz.Goal.fire(Goal.java:639)
        at com.werken.werkz.Goal.attain(Goal.java:575)
        at 
org.apache.maven.plugin.PluginManager.attainGoals(PluginManager.java:
671)
        at org.apache.maven.MavenSession.attainGoals(MavenSession.java:263)
        at 
org.apache.maven.jelly.tags.maven.ReactorTag.doTag(ReactorTag.java:36
8)
        at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
        at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTa
g.java:79)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.perfor
mAction(MavenGoalTag.java:110)
        at com.werken.werkz.Goal.fire(Goal.java:639)
        at com.werken.werkz.Goal.attain(Goal.java:575)
        at com.werken.werkz.WerkzProject.attainGoal(WerkzProject.java:193)
        at 
org.apache.maven.jelly.tags.werkz.MavenAttainGoalTag.doTag(MavenAttai
nGoalTag.java:127)
        at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
        at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTa
g.java:79)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.perfor
mAction(MavenGoalTag.java:110)
        at com.werken.werkz.Goal.fire(Goal.java:639)
        at com.werken.werkz.Goal.attain(Goal.java:575)
        at 
org.apache.maven.plugin.PluginManager.attainGoals(PluginManager.java:
671)
        at org.apache.maven.MavenSession.attainGoals(MavenSession.java:263)
        at org.apache.maven.cli.App.doMain(App.java:488)
        at org.apache.maven.cli.App.main(App.java:1239)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
java:39)
        at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.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
Compile failed; see the compiler error output for details.
        at org.apache.tools.ant.taskdefs.Javac.compile(Javac.java:844)
        at org.apache.tools.ant.taskdefs.Javac.execute(Javac.java:682)
        at org.apache.tools.ant.Task.perform(Task.java:341)
        at org.apache.commons.jelly.tags.ant.AntTag.doTag(AntTag.java:185)
        at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
        at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
        at 
org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:233)
        at org.apache.commons.jelly.tags.core.WhenTag.doTag(WhenTag.java:92)
        at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
        at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
        at 
org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:233)
        at 
org.apache.commons.jelly.tags.core.ChooseTag.doTag(ChooseTag.java:84)

        at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
        at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTa
g.java:79)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.perfor
mAction(MavenGoalTag.java:110)
        at com.werken.werkz.Goal.fire(Goal.java:639)
        at com.werken.werkz.Goal.attain(Goal.java:575)
        at com.werken.werkz.Goal.attainPrecursors(Goal.java:488)
        at com.werken.werkz.Goal.attain(Goal.java:573)
        at com.werken.werkz.Goal.attainPrecursors(Goal.java:488)
        at com.werken.werkz.Goal.attain(Goal.java:573)
        at com.werken.werkz.Goal.attainPrecursors(Goal.java:488)
        at com.werken.werkz.Goal.attain(Goal.java:573)
        at com.werken.werkz.WerkzProject.attainGoal(WerkzProject.java:193)
        at 
org.apache.maven.jelly.tags.werkz.MavenAttainGoalTag.doTag(MavenAttai
nGoalTag.java:127)
        at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
        at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTa
g.java:79)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.perfor
mAction(MavenGoalTag.java:110)
        at com.werken.werkz.Goal.fire(Goal.java:639)
        at com.werken.werkz.Goal.attain(Goal.java:575)
        at com.werken.werkz.Goal.attainPrecursors(Goal.java:488)
        at com.werken.werkz.Goal.attain(Goal.java:573)
        at com.werken.werkz.WerkzProject.attainGoal(WerkzProject.java:193)
        at 
org.apache.maven.jelly.tags.werkz.MavenAttainGoalTag.doTag(MavenAttai
nGoalTag.java:127)
        at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
        at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTa
g.java:79)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.perfor
mAction(MavenGoalTag.java:110)
        at com.werken.werkz.Goal.fire(Goal.java:639)
        at com.werken.werkz.Goal.attain(Goal.java:575)
        at 
org.apache.maven.plugin.PluginManager.attainGoals(PluginManager.java:
671)
        at org.apache.maven.MavenSession.attainGoals(MavenSession.java:263)
        at 
org.apache.maven.jelly.tags.maven.ReactorTag.doTag(ReactorTag.java:36
8)
        at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
        at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTa
g.java:79)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.perfor
mAction(MavenGoalTag.java:110)
        at com.werken.werkz.Goal.fire(Goal.java:639)
        at com.werken.werkz.Goal.attain(Goal.java:575)
        at com.werken.werkz.WerkzProject.attainGoal(WerkzProject.java:193)
        at 
org.apache.maven.jelly.tags.werkz.MavenAttainGoalTag.doTag(MavenAttai
nGoalTag.java:127)
        at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
        at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTa
g.java:79)
        at 
org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.perfor
mAction(MavenGoalTag.java:110)
        at com.werken.werkz.Goal.fire(Goal.java:639)
        at com.werken.werkz.Goal.attain(Goal.java:575)
        at 
org.apache.maven.plugin.PluginManager.attainGoals(PluginManager.java:
671)
        at org.apache.maven.MavenSession.attainGoals(MavenSession.java:263)
        at org.apache.maven.cli.App.doMain(App.java:488)
        at org.apache.maven.cli.App.main(App.java:1239)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
java:39)
        at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.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)
Final Memory: 17M/63M
20:18:58,968 DEBUG [App] Final Memory: 17M/63M
20:18:58,968 DEBUG [App] Final Memory: 17M/63M
Total time: 1 minutes 4 seconds
20:18:58,968 INFO  [App] Total time: 1 minutes 4 seconds
20:18:58,968 INFO  [App] Total time: 1 minutes 4 seconds
Finished at: Wed Jan 11 20:18:58 EST 2006
20:18:58,968 INFO  [App] Finished at: Wed Jan 11 20:18:58 EST 2006
20:18:58,968 INFO  [App] Finished at: Wed Jan 11 20:18:58 EST 2006

20:18:58,968 INFO  [App]
20:18:58,968 INFO  [App]
E:\temp\geronimo-1.0-src>



Re: Geronimo build question

Posted by Bruce Snyder <br...@gmail.com>.
On 1/11/06, Rob Kenworthy <rk...@hotmail.com> wrote:
> FYI j2sdk1.4.2_10 yielded the same results.

Rob,

Please post the actual error/exception from when running Maven with
the -X flag.

Bruce
--
perl -e 'print unpack("u30","D0G)U8V4\@4VYY9&5R\"F)R=6-E+G-N>61E<D\!G;6%I;\"YC;VT*"
);'

Apache Geronimo (http://geronimo.apache.org/)

Castor (http://castor.org/)

Re: Geronimo build question

Posted by Rob Kenworthy <rk...@hotmail.com>.
FYI j2sdk1.4.2_10 yielded the same results.

Rob



Re: Geronimo build question

Posted by John Sisson <jr...@gmail.com>.
Rob,

The build instructions probably shouldn't say JDK1.4.x they should say 
JDK1.4.2 (preferably JDK1.4.2_08 or later).

Can you also send me the output of the "java -version" command.

Thanks,

John

Rob Kenworthy wrote:

> Hi,
>
> John Sisson has asked me to send an email to this list as a result of 
> my posting on theserverside 
> (http://www.theserverside.com/tss?service=direct/0/PostNewsReply/postReply&sp=l38463&sp=F&sp=l196734#196680) 
>
>
> I am having problems doing a simple Geronimo build of 1.0 final.
>
> Here is the info that John requested:
>
> Q: Are you using the 1.0 final release or a release candidate?
> A: 1.0 Final release.
>
> Q: What platform are you building on (Windows XP, Linux..)?
> A: Windows 2000
>
> Q: Do you want to build from the command line or were you wanting to 
> use an IDE to debug etc?
> A: Command line. The BUILDING.txt file says to use Maven 1.0.2 or 
> later and use JDK 1.4.x. So I set my path to the bin directory of 
> Maven and set JAVA_HOME appropriately. Then run Maven from the 
> geronimo directory. I figure that is all I should need to do.
>
> The errors I am getting are unsatisfied class dependencies for a file 
> called GenerateServiceXml.java. The dependencies are actually in one 
> of the maven jars, but it doesn't seem to be in the classpath. I did 
> try renaming the file to ...java.bak and ran it again. It got much 
> further, but other class compilations depend on 
> GenerateServiceXml.java, so it blew up again.
>
> Any help would be appreciated.
>
> Thanks,
> Rob
>
>
>