You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@geronimo.apache.org by Bryce Alcock <Br...@licosystems.com> on 2004/02/26 06:47:54 UTC

What does this mean?

BUILD FAILED
File...... file:/C:/apache/incubator-geronimo/
Element... maven:reactor
Line...... 179
Column.... 27
The build cannot continue because of the following unsatisfied dependency:

geronimo-xmlbeans-plugin-DEV.jar (no download url specified)

Total time: 1 minutes 31 seconds
Finished at: Wed Feb 25 21:44:19 PST 2004

Re: What does this mean?

Posted by Jeremy Boynes <je...@coredevelopers.net>.
David Jencks wrote:

> I think the problem might be that for some reason the jmxdebug  
> application is not generating an artifact in the local maven  
> repository, and the assembly task is not depending on any result from  
> jmxdebug.  Therefore, unless jmxdebug happens to be built before  
> assembly, the build will fail.
> 
> I am certainly having this problem on my linux box, but not on my os x  
> box.
> 
> To test this theory, try
> 
> maven -Dmodules=jmxdebug
> maven -Dmodules=assembly
> 
> if the assembly succeeds, this is the problem.
> 

This would explain why it works for me - the reactor builds the JMX 
Debug Webapp near the beginning:

Our processing order:
Geronimo :: Servlet Specification
Geronimo :: JMX Debug Webapp
Geronimo :: Clustering
Geronimo :: Common
Geronimo maven xmlbeans plugin
Geronimo :: Java Transaction API Specification
Geronimo :: Enterprise JavaBeans Specification
Geronimo :: J2EE Application Management Specification
Geronimo :: J2EE Application Deployment Specification
Geronimo :: Kernel
Geronimo :: System
Geronimo :: Deployment
Geronimo :: J2eeSchema
Geronimo :: Core
Geronimo :: Naming
Geronimo :: Remoting
Geronimo :: Java Authorization Contract for Containers Specification
Geronimo :: Security
Geronimo :: J2EE Connector Architecture Specification
Geronimo :: Transaction
Geronimo :: Connector
Geronimo :: J2EE
Geronimo :: JavaServer Pages Specification
Geronimo :: Jetty
Geronimo :: JMS Specification
Geronimo :: J2EE Specification
Geronimo :: Assembly
Geronimo :: Web Console
Geronimo maven deployment plugin

--
Jeremy


Re: What does this mean?

Posted by David Jencks <da...@coredevelopers.net>.
I think the problem might be that for some reason the jmxdebug  
application is not generating an artifact in the local maven  
repository, and the assembly task is not depending on any result from  
jmxdebug.  Therefore, unless jmxdebug happens to be built before  
assembly, the build will fail.

I am certainly having this problem on my linux box, but not on my os x  
box.

To test this theory, try

maven -Dmodules=jmxdebug
maven -Dmodules=assembly

if the assembly succeeds, this is the problem.

david jencks

On Saturday, February 28, 2004, at 11:15 PM, Bryce Alcock wrote:

> Ok,
> I got down to a root cause.  here you go:
>
>    [java] Deployer location :  
> C:\apache\incubator-geronimo/applications/jmxdebug/target/geronimo- 
> jmxdebug.war
>
> Therefore:
>    return new File(".").toURI().resolve(location).toURL();
> will cause an exception.
> I am not sure how to solve this because apperently on unix, the  
> location url is relative,
> and on Windows it is absolute.  Or maybe because my ant exists in e:  
> and my geronimo in c:
> well anyway,  This is definately an issue that need to be fixed in the  
> code.
>
> I will try to look at it somemore tomorrow.   Any Ideas, that would  
> make for an slick solution?
>
>> Here is the root cause code from
>> org/apache/geronimo/deployment/Deployer.java
>> (I added the System.out.println just before the suspect line 212)
>>
>>    private static URL getURL(String location) throws  
>> MalformedURLException {
>>        File f = new File(location);
>>        if (f.exists() && f.canRead()) {
>>            return f.toURI().toURL();
>>        }
>>    System.out.println("Deployer location : " + location);
>>        return new File(".").toURI().resolve(location).toURL();
>>    }
>>
>>
>> The exact error is indicating that:
>> java.lang.IllegalArgumentException
>>      at java.net.URI.create(URI.java:838)
>>      at java.net.URI.resolve(URI.java:1024)
>>      at  
>> org.apache.geronimo.deployment.Deployer.getURL(Deployer.java:212)
>>      at  
>> org.apache.geronimo.deployment.Deployer.parseArgs(Deployer.java:195)
>>      at  
>> org.apache.geronimo.deployment.Deployer.deploy(Deployer.java:69)
>>      at  
>> org.apache.geronimo.deployment.Deployer$$FastClassByCGLIB$$734a235d.in 
>> voke(<gener
>>
>


Re: What does this mean?

Posted by Jeremy Boynes <je...@coredevelopers.net>.
This is working for me:
default:
build:
assemble:
     [copy] Copying 1 file to C:\apache\incubator-geronimo\target\lib
     [copy] Copying 2 files to 
C:\apache\incubator-geronimo\target\repository
     [echo] Bootstrapping service deployer
     [echo] Building system configuration
     [java] Deployer location : src/plan/system-plan.xml
     [echo] Building server configuration
     [java] Deployer location : src/plan/j2ee-server-plan.xml
     [echo] Building debug tool configuration
     [java] Deployer location : 
C:\apache\incubator-geronimo/applications/jmxdebug/target/geronimo-jmxdebug.war
BUILD SUCCESSFUL
Total time: 22 seconds
Finished at: Sat Feb 28 21:58:08 PST 2004

(with allowances for line wraps).

The file exists for me so the URI.resolve is not used so I would not see 
the problem. We do need to trap the case where the URI cannot be 
resolved and I will check in a fix that, but it does not explain why the 
war is not getting built for you.

Are there any other errors earlier in the build?
Can you confirm if the war file exists or not?

Thanks
--
Jeremy

Bryce Alcock wrote:

> Ok,
> I got down to a root cause.  here you go:
> 
>    [java] Deployer location : 
> C:\apache\incubator-geronimo/applications/jmxdebug/target/geronimo-jmxdebug.war 
> 
> 
> Therefore:
>    return new File(".").toURI().resolve(location).toURL();
> will cause an exception.
> I am not sure how to solve this because apperently on unix, the location 
> url is relative,
> and on Windows it is absolute.  Or maybe because my ant exists in e: and 
> my geronimo in c:
> well anyway,  This is definately an issue that need to be fixed in the 
> code.
> 
> I will try to look at it somemore tomorrow.   Any Ideas, that would make 
> for an slick solution?
> 
>> Here is the root cause code from
>> org/apache/geronimo/deployment/Deployer.java
>> (I added the System.out.println just before the suspect line 212)
>>
>>    private static URL getURL(String location) throws 
>> MalformedURLException {
>>        File f = new File(location);
>>        if (f.exists() && f.canRead()) {
>>            return f.toURI().toURL();
>>        }
>>    System.out.println("Deployer location : " + location);
>>        return new File(".").toURI().resolve(location).toURL();
>>    }
>>
>>
>> The exact error is indicating that:
>> java.lang.IllegalArgumentException
>>      at java.net.URI.create(URI.java:838)
>>      at java.net.URI.resolve(URI.java:1024)
>>      at org.apache.geronimo.deployment.Deployer.getURL(Deployer.java:212)
>>      at 
>> org.apache.geronimo.deployment.Deployer.parseArgs(Deployer.java:195)
>>      at org.apache.geronimo.deployment.Deployer.deploy(Deployer.java:69)
>>      at 
>> org.apache.geronimo.deployment.Deployer$$FastClassByCGLIB$$734a235d.invoke(<gener 
>>
>>
> 


Re: What does this mean?

Posted by Bryce Alcock <Br...@licosystems.com>.
Ok,
I got down to a root cause.  here you go:

    [java] Deployer location : 
C:\apache\incubator-geronimo/applications/jmxdebug/target/geronimo-jmxdebug.war

Therefore:
    return new File(".").toURI().resolve(location).toURL();
will cause an exception.
I am not sure how to solve this because apperently on unix, the location 
url is relative,
and on Windows it is absolute.  Or maybe because my ant exists in e: and 
my geronimo in c:
well anyway,  This is definately an issue that need to be fixed in the code.

I will try to look at it somemore tomorrow.   Any Ideas, that would make 
for an slick solution?

> Here is the root cause code from
> org/apache/geronimo/deployment/Deployer.java
> (I added the System.out.println just before the suspect line 212)
>
>    private static URL getURL(String location) throws 
> MalformedURLException {
>        File f = new File(location);
>        if (f.exists() && f.canRead()) {
>            return f.toURI().toURL();
>        }
>    System.out.println("Deployer location : " + location);
>        return new File(".").toURI().resolve(location).toURL();
>    }
>
>
> The exact error is indicating that:
> java.lang.IllegalArgumentException
>      at java.net.URI.create(URI.java:838)
>      at java.net.URI.resolve(URI.java:1024)
>      at org.apache.geronimo.deployment.Deployer.getURL(Deployer.java:212)
>      at 
> org.apache.geronimo.deployment.Deployer.parseArgs(Deployer.java:195)
>      at org.apache.geronimo.deployment.Deployer.deploy(Deployer.java:69)
>      at 
> org.apache.geronimo.deployment.Deployer$$FastClassByCGLIB$$734a235d.invoke(<gener 
>
>


Re: What does this mean?

Posted by anita kulshreshtha <a_...@yahoo.com>.
Hi 
    I am getting same error on my windows 98 2nd ed.,
jdk1.4.2_01. 
I am also getting "using or extending a deprecated
API" error in 
  
../../core/src/test/o/a/g/test/protocol/mockproto/Handler.java.
I had to delete StopWatchTest.java,
RAR_1_5ConfigBuilderTest.java, 
                RAR_1_0DconfigBeanTest.java for the
build to proceed.
                             TIA 
                                                  >>
Anita <<
--- Bryce Alcock <Br...@licosystems.com> wrote:
> no the  problem didn't go away.
> 
> This is the section  of the maven.xml file in
> ./modules/assembly/maven.xml
> That seems to cause the problem.
>         <!-- build the Debug Tool configuration -->
>         <ant:echo>Building debug tool
> configuration</ant:echo>
>         <ant:java fork="true"
> jar="${distDir}/bin/deployer.jar" 
> failonerror="false">
>             <ant:arg value="--install"/>
>             <ant:arg value="--module"/>
>             <ant:arg 
>
value="${project.root}/applications/jmxdebug/target/geronimo-jmxdebug.war"/>
>         </ant:java>
> 
> 
> What I did was change the failonerror from the ant
> task to false so that 
> even though an
> error occurs, the system continues, and commpletes
> the Build 
> successfully.  This is just a temporary
> fix though and I am waiting an additional Ideas to
> get this working. 
> 
> Now the System seems to build fine every time???
> 
> Here is the root cause code from
> org/apache/geronimo/deployment/Deployer.java
> (I added the System.out.println just before the
> suspect line 212)
> 
>     private static URL getURL(String location)
> throws 
> MalformedURLException {
>         File f = new File(location);
>         if (f.exists() && f.canRead()) {
>             return f.toURI().toURL();
>         }
>     System.out.println("Deployer location : " +
> location);
>         return new
> File(".").toURI().resolve(location).toURL();
>     }
> 
> 
> The exact error is indicating that:
>  java.lang.IllegalArgumentException
>       at java.net.URI.create(URI.java:838)
>       at java.net.URI.resolve(URI.java:1024)
>       at
>
org.apache.geronimo.deployment.Deployer.getURL(Deployer.java:212)
>       at 
>
org.apache.geronimo.deployment.Deployer.parseArgs(Deployer.java:195)
>       at
>
org.apache.geronimo.deployment.Deployer.deploy(Deployer.java:69)
>       at 
>
org.apache.geronimo.deployment.Deployer$$FastClassByCGLIB$$734a235d.invoke(<gener
> 
>       at
>
net.sf.cglib.reflect.FastMethod.invoke(FastMethod.java:87)
>       at 
>
org.apache.geronimo.gbean.jmx.FastMethodInvoker.invoke(FastMethodInvoker.java:40)
> 
>       at 
>
org.apache.geronimo.gbean.jmx.GBeanMBeanOperation.invoke(GBeanMBeanOperation.java
> 
>       at 
>
org.apache.geronimo.gbean.jmx.GBeanMBean.invoke(GBeanMBean.java:465)
>       at 
>
mx4j.server.interceptor.InvokerMBeanServerInterceptor.invoke(InvokerMBeanServerIn
> java:224)
>       at 
>
mx4j.server.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerIn
> java:121)
>       at 
>
mx4j.server.interceptor.SecurityMBeanServerInterceptor.invoke(SecurityMBeanServer
> r.java:86)
>       at 
>
mx4j.server.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerIn
> java:121)
>       at 
>
mx4j.server.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerIn
> java:121)
>       at 
>
mx4j.server.interceptor.ContextClassLoaderMBeanServerInterceptor.invoke(ContextCl
> BeanServerInterceptor.java:205)
>       at
>
mx4j.server.MX4JMBeanServer.invoke(MX4JMBeanServer.java:1077)
>       at
>
org.apache.geronimo.kernel.Kernel.invoke(Kernel.java:219)
>       at 
>
org.apache.geronimo.system.main.CommandLine.main(CommandLine.java:96)
>  Caused by: java.net.URISyntaxException: Illegal
> character in opaque 
> part at index 2: C:\a
>
bator-geronimo/applications/jmxdebug/target/geronimo-jmxdebug.war
>       at java.net.URI$Parser.fail(URI.java:2752)
>       at
> java.net.URI$Parser.checkChars(URI.java:2925)
>       at java.net.URI$Parser.parse(URI.java:2962)
>       at java.net.URI.<init>(URI.java:574)
>       at java.net.URI.create(URI.java:836)
>       ... 18 more
>  [ERROR] Java Result: 2
> 
> >>
> >>
> >> Did this resolve it and do we need to document a
> problem with 1.4.1 
> >> on Windows?
> >
> >
> > Some brief description of possible issues with
> elder versions of JDK 
> > on Windows is already available at 
> >
>
http://wiki.apache.org/geronimo/BuildingAndRunning#head-1a5419a621a9c7092f318a52819033ffed86afc5.
> 
> > It's not clearly written, though.
> >
> > I changed
>
http://wiki.apache.org/geronimo/KnownWorkingConfigurations
> 
> > with some info on the issues.
> >
> > Jacek
> >
> 


__________________________________
Do you Yahoo!?
Get better spam protection with Yahoo! Mail.
http://antispam.yahoo.com/tools

Re: What does this mean?

Posted by Bryce Alcock <Br...@licosystems.com>.
no the  problem didn't go away.

This is the section  of the maven.xml file in ./modules/assembly/maven.xml
That seems to cause the problem.
        <!-- build the Debug Tool configuration -->
        <ant:echo>Building debug tool configuration</ant:echo>
        <ant:java fork="true" jar="${distDir}/bin/deployer.jar" 
failonerror="false">
            <ant:arg value="--install"/>
            <ant:arg value="--module"/>
            <ant:arg 
value="${project.root}/applications/jmxdebug/target/geronimo-jmxdebug.war"/>
        </ant:java>


What I did was change the failonerror from the ant task to false so that 
even though an
error occurs, the system continues, and commpletes the Build 
successfully.  This is just a temporary
fix though and I am waiting an additional Ideas to get this working. 

Now the System seems to build fine every time???

Here is the root cause code from
org/apache/geronimo/deployment/Deployer.java
(I added the System.out.println just before the suspect line 212)

    private static URL getURL(String location) throws 
MalformedURLException {
        File f = new File(location);
        if (f.exists() && f.canRead()) {
            return f.toURI().toURL();
        }
    System.out.println("Deployer location : " + location);
        return new File(".").toURI().resolve(location).toURL();
    }


The exact error is indicating that:
 java.lang.IllegalArgumentException
      at java.net.URI.create(URI.java:838)
      at java.net.URI.resolve(URI.java:1024)
      at org.apache.geronimo.deployment.Deployer.getURL(Deployer.java:212)
      at 
org.apache.geronimo.deployment.Deployer.parseArgs(Deployer.java:195)
      at org.apache.geronimo.deployment.Deployer.deploy(Deployer.java:69)
      at 
org.apache.geronimo.deployment.Deployer$$FastClassByCGLIB$$734a235d.invoke(<gener

      at net.sf.cglib.reflect.FastMethod.invoke(FastMethod.java:87)
      at 
org.apache.geronimo.gbean.jmx.FastMethodInvoker.invoke(FastMethodInvoker.java:40)

      at 
org.apache.geronimo.gbean.jmx.GBeanMBeanOperation.invoke(GBeanMBeanOperation.java

      at 
org.apache.geronimo.gbean.jmx.GBeanMBean.invoke(GBeanMBean.java:465)
      at 
mx4j.server.interceptor.InvokerMBeanServerInterceptor.invoke(InvokerMBeanServerIn
java:224)
      at 
mx4j.server.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerIn
java:121)
      at 
mx4j.server.interceptor.SecurityMBeanServerInterceptor.invoke(SecurityMBeanServer
r.java:86)
      at 
mx4j.server.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerIn
java:121)
      at 
mx4j.server.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerIn
java:121)
      at 
mx4j.server.interceptor.ContextClassLoaderMBeanServerInterceptor.invoke(ContextCl
BeanServerInterceptor.java:205)
      at mx4j.server.MX4JMBeanServer.invoke(MX4JMBeanServer.java:1077)
      at org.apache.geronimo.kernel.Kernel.invoke(Kernel.java:219)
      at 
org.apache.geronimo.system.main.CommandLine.main(CommandLine.java:96)
 Caused by: java.net.URISyntaxException: Illegal character in opaque 
part at index 2: C:\a
bator-geronimo/applications/jmxdebug/target/geronimo-jmxdebug.war
      at java.net.URI$Parser.fail(URI.java:2752)
      at java.net.URI$Parser.checkChars(URI.java:2925)
      at java.net.URI$Parser.parse(URI.java:2962)
      at java.net.URI.<init>(URI.java:574)
      at java.net.URI.create(URI.java:836)
      ... 18 more
 [ERROR] Java Result: 2

>>
>>
>> Did this resolve it and do we need to document a problem with 1.4.1 
>> on Windows?
>
>
> Some brief description of possible issues with elder versions of JDK 
> on Windows is already available at 
> http://wiki.apache.org/geronimo/BuildingAndRunning#head-1a5419a621a9c7092f318a52819033ffed86afc5. 
> It's not clearly written, though.
>
> I changed http://wiki.apache.org/geronimo/KnownWorkingConfigurations 
> with some info on the issues.
>
> Jacek
>


Re: What does this mean?

Posted by Jacek Laskowski <jl...@apache.org>.
Jeremy Boynes wrote:
> Jacek Laskowski wrote:
> 
>> Bryce Alcock wrote:
>>
>>>    [echo] Building debug tool configuration
>>>    [java] java.lang.IllegalArgumentException
>>>    [java]      at java.net.URI.create(URI.java:829)
>>>    [java]      at java.net.URI.resolve(URI.java:1015)
>>>    [java]      at 
>>> org.apache.geronimo.deployment.Deployer.getURL(Deployer.java:212)
>>
>>
>>
>> I remember having the error message while working with JDK 1.4.1 and 
>> earlier.
>>
>> So, your idea of downloading the latest version of JDK is really 
>> promising :)
>>
>> Cheers,
>> Jacek
> 
> 
> Did this resolve it and do we need to document a problem with 1.4.1 on 
> Windows?

Some brief description of possible issues with elder versions of JDK on 
Windows is already available at 
http://wiki.apache.org/geronimo/BuildingAndRunning#head-1a5419a621a9c7092f318a52819033ffed86afc5. 
It's not clearly written, though.

I changed http://wiki.apache.org/geronimo/KnownWorkingConfigurations 
with some info on the issues.

Jacek

Re: What does this mean?

Posted by Jeremy Boynes <je...@coredevelopers.net>.
Jacek Laskowski wrote:

> Bryce Alcock wrote:
> 
>>    [echo] Building debug tool configuration
>>    [java] java.lang.IllegalArgumentException
>>    [java]      at java.net.URI.create(URI.java:829)
>>    [java]      at java.net.URI.resolve(URI.java:1015)
>>    [java]      at 
>> org.apache.geronimo.deployment.Deployer.getURL(Deployer.java:212)
> 
> 
> I remember having the error message while working with JDK 1.4.1 and 
> earlier.
> 
> So, your idea of downloading the latest version of JDK is really 
> promising :)
> 
> Cheers,
> Jacek

Did this resolve it and do we need to document a problem with 1.4.1 on 
Windows?

-- 
Jeremy

Re: What does this mean?

Posted by Jacek Laskowski <jl...@apache.org>.
Bryce Alcock wrote:

>    [echo] Building debug tool configuration
>    [java] java.lang.IllegalArgumentException
>    [java]      at java.net.URI.create(URI.java:829)
>    [java]      at java.net.URI.resolve(URI.java:1015)
>    [java]      at 
> org.apache.geronimo.deployment.Deployer.getURL(Deployer.java:212)

I remember having the error message while working with JDK 1.4.1 and 
earlier.

So, your idea of downloading the latest version of JDK is really 
promising :)

Cheers,
Jacek

Re: What does this mean?

Posted by Bryce Alcock <Br...@licosystems.com>.
Dain Sundstrom wrote:

> On Feb 26, 2004, at 12:00 AM, Jeremy Boynes wrote:
>
>> Bryce Alcock wrote:
>>
>>> BUILD FAILED
>>> File...... file:/C:/apache/incubator-geronimo/
>>> Element... maven:reactor
>>> Line...... 179
>>> Column.... 27
>>> The build cannot continue because of the following unsatisfied 
>>> dependency:
>>> geronimo-xmlbeans-plugin-DEV.jar (no download url specified)
>>> Total time: 1 minutes 31 seconds
>>> Finished at: Wed Feb 25 21:44:19 PST 2004
>>
>>
>> You used to need to build this plugin first. Dain recently changed 
>> the build so you may not, but just in case you could try
>>
>> $ cd modules/maven-xmlbeans-plugin
>> $ maven
>>
>> to build that plugin, and then try the main build again.
>>
>> Dain - is this still true? If so can you update the wiki appropriately.
>
>
> You don't need to manually build the xmlbeans plugin anymore.  All you 
> have to do is run "maven" from the root.  I believe the wiki page 
> (http://wiki.apache.org/geronimo/BuildingAndRunning) does have the 
> correct information, but I could have missed something.
>
> The build depends on the plugin being installed at 
> ~/.maven/repository/geronimo/plugins/geronimo-xmlbeans-plugin-DEV.jar 
> (or whatever the equivalent on windows is).  I suggest you delete your 
> maven repository and try to build again, as you may have cruft from 
> our old build code that you are picking up.
>
> -dain
>

Thank you Dain,
That did the trick for that error!

however here is the next one, see error below.
failing during building debug tool configuration:

I am attempting to solve this by downloading and installing the latest 
version of java.
I remember reading that some people had issues with older versions of  java.
I currently am running: java version "1.4.1_01"
I am getting 1.4.2_03

This will take about 3 hours on my "Back-Woods internet connection"  
(26.4 Kbps)
So in the mean time if someone has a better suggestion for resolving this
please let me know. 

If not in about 3 hours I will let you know if the jvm upgrade did the 
trick.

here is some other info about my system:
Apache Ant version 1.5.1 compiled on October 2 2002
Windows 2000
Maven - 1.0-rc1-SNAPSHOT

THE ERROR
-------------------------------------------------------------------------------------------
default:
build:
assemble:
    [copy] Copying 1 file to C:\apache\incubator-geronimo\target\lib
    [copy] Copying 1 file to C:\apache\incubator-geronimo\target\lib
    [copy] Copying 1 file to C:\apache\incubator-geronimo\target\lib
    [copy] Copying 1 file to C:\apache\incubator-geronimo\target\lib
    [copy] Copying 26 files to 
C:\apache\incubator-geronimo\target\repository
    [echo] Bootstrapping service deployer
    [echo] Building system configuration
    [echo] Building server configuration
    [echo] Building debug tool configuration
    [java] java.lang.IllegalArgumentException
    [java]      at java.net.URI.create(URI.java:829)
    [java]      at java.net.URI.resolve(URI.java:1015)
    [java]      at 
org.apache.geronimo.deployment.Deployer.getURL(Deployer.java:212)
    [java]      at 
org.apache.geronimo.deployment.Deployer.parseArgs(Deployer.java:195)
    [java]      at 
org.apache.geronimo.deployment.Deployer.deploy(Deployer.java:69)
    [java]      at 
org.apache.geronimo.deployment.Deployer$$FastClassByCGLIB$$734a235d.invoke(<gener
ated>)
    [java]      at 
net.sf.cglib.reflect.FastMethod.invoke(FastMethod.java:87)
    [java]      at 
org.apache.geronimo.gbean.jmx.FastMethodInvoker.invoke(FastMethodInvoker.java:40)

    [java]      at 
org.apache.geronimo.gbean.jmx.GBeanMBeanOperation.invoke(GBeanMBeanOperation.java
:155)
    [java]      at 
org.apache.geronimo.gbean.jmx.GBeanMBean.invoke(GBeanMBean.java:465)
    [java]      at 
mx4j.server.interceptor.InvokerMBeanServerInterceptor.invoke(InvokerMBeanServerIn
terceptor.java:224)
    [java]      at 
mx4j.server.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerIn
terceptor.java:121)
    [java]      at 
mx4j.server.interceptor.SecurityMBeanServerInterceptor.invoke(SecurityMBeanServer
Interceptor.java:86)
    [java]      at 
mx4j.server.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerIn
terceptor.java:121)
    [java]      at 
mx4j.server.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerIn
terceptor.java:121)
    [java]      at 
mx4j.server.interceptor.ContextClassLoaderMBeanServerInterceptor.invoke(ContextCl
assLoaderMBeanServerInterceptor.java:205)
    [java]      at 
mx4j.server.MX4JMBeanServer.invoke(MX4JMBeanServer.java:1077)
    [java]      at org.apache.geronimo.kernel.Kernel.invoke(Kernel.java:219)
    [java]      at 
org.apache.geronimo.system.main.CommandLine.main(CommandLine.java:96)
    [java] Caused by: java.net.URISyntaxException: Illegal character in 
opaque part at index 2: C:\a
pache\incubator-geronimo/applications/jmxdebug/target/geronimo-jmxdebug.war
    [java]      at java.net.URI$Parser.fail(URI.java:2739)
    [java]      at java.net.URI$Parser.checkChars(URI.java:2912)
    [java]      at java.net.URI$Parser.parse(URI.java:2949)
    [java]      at java.net.URI.<init>(URI.java:565)
    [java]      at java.net.URI.create(URI.java:827)
    [java]      ... 18 more

BUILD FAILED
File...... file:/C:/apache/incubator-geronimo/
Element... maven:reactor
Line...... 179
Column.... 27
Unable to obtain goal [default] -- 
file:/C:/apache/incubator-geronimo/modules/assembly/:149:84: <ant
:java> Java returned: 2
Total time: 3 minutes 25 seconds
Finished at: Thu Feb 26 19:43:59 PST 2004

C:\apache\incubator-geronimo>

Re: What does this mean?

Posted by Dain Sundstrom <da...@coredevelopers.net>.
On Feb 26, 2004, at 12:00 AM, Jeremy Boynes wrote:

> Bryce Alcock wrote:
>> BUILD FAILED
>> File...... file:/C:/apache/incubator-geronimo/
>> Element... maven:reactor
>> Line...... 179
>> Column.... 27
>> The build cannot continue because of the following unsatisfied 
>> dependency:
>> geronimo-xmlbeans-plugin-DEV.jar (no download url specified)
>> Total time: 1 minutes 31 seconds
>> Finished at: Wed Feb 25 21:44:19 PST 2004
>
> You used to need to build this plugin first. Dain recently changed the 
> build so you may not, but just in case you could try
>
> $ cd modules/maven-xmlbeans-plugin
> $ maven
>
> to build that plugin, and then try the main build again.
>
> Dain - is this still true? If so can you update the wiki appropriately.

You don't need to manually build the xmlbeans plugin anymore.  All you 
have to do is run "maven" from the root.  I believe the wiki page 
(http://wiki.apache.org/geronimo/BuildingAndRunning) does have the 
correct information, but I could have missed something.

The build depends on the plugin being installed at 
~/.maven/repository/geronimo/plugins/geronimo-xmlbeans-plugin-DEV.jar 
(or whatever the equivalent on windows is).  I suggest you delete your 
maven repository and try to build again, as you may have cruft from our 
old build code that you are picking up.

-dain


Re: What does this mean?

Posted by Jeremy Boynes <je...@coredevelopers.net>.
Bryce Alcock wrote:
> BUILD FAILED
> File...... file:/C:/apache/incubator-geronimo/
> Element... maven:reactor
> Line...... 179
> Column.... 27
> The build cannot continue because of the following unsatisfied dependency:
> 
> geronimo-xmlbeans-plugin-DEV.jar (no download url specified)
> 
> Total time: 1 minutes 31 seconds
> Finished at: Wed Feb 25 21:44:19 PST 2004

You used to need to build this plugin first. Dain recently changed the 
build so you may not, but just in case you could try

$ cd modules/maven-xmlbeans-plugin
$ maven

to build that plugin, and then try the main build again.

Dain - is this still true? If so can you update the wiki appropriately.

--
Jeremy


Re: What does this mean? -- BUILD FAILED

Posted by Ralf Barkow <Ra...@web.de>.
Hoi Bryce,

without the knowledge about your commands, which led to this error 
message, I can only assume that you might find the answers here: 
http://wiki.apache.org/geronimo/BuildingAndRunning 
<http://wiki.apache.org/geronimo/BuildingAndRunning>

Regards,

--  
/rgb

 

Bryce Alcock wrote:

> BUILD FAILED
> File...... file:/C:/apache/incubator-geronimo/
> Element... maven:reactor
> Line...... 179
> Column.... 27
> The build cannot continue because of the following unsatisfied 
> dependency:
>
> geronimo-xmlbeans-plugin-DEV.jar (no download url specified)
>
> Total time: 1 minutes 31 seconds
> Finished at: Wed Feb 25 21:44:19 PST 2004


Re: What does this mean?

Posted by Jeff Fletcher <jf...@voicelog.net>.
I just got this error message when I tried to build with maven-1.0-beta-10.
maven-1.0-rc1 worked fine.

Jeff


Bryce Alcock wrote:

> BUILD FAILED
> File...... file:/C:/apache/incubator-geronimo/
> Element... maven:reactor
> Line...... 179
> Column.... 27
> The build cannot continue because of the following unsatisfied 
> dependency:
>
> geronimo-xmlbeans-plugin-DEV.jar (no download url specified)
>
> Total time: 1 minutes 31 seconds
> Finished at: Wed Feb 25 21:44:19 PST 2004
>