You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@geronimo.apache.org by Dondi Imperial <di...@exist.com> on 2005/06/09 05:19:59 UTC

Could not build geronimo rev 189685

I could not build geronimo rev 189685 using the "For the impatient..." 
instructions on the wiki. I tried looking for the offending jar in 
ibiblio and sourceforge but could not see it there either. Here is the 
failure message.

BUILD FAILED
File...... C:\Documents and 
Settings\exist_user2\.maven\cache\maven-multiproject-plugin-1.3.1\plugin
.jelly
Element... maven:reactor
Line...... 217
Column.... 9
The build cannot continue because of the following unsatisfied dependency:

cglib-nodep-HEAD-06-06-05.jar (try downloading from http://cglib.sf.net/)

-- 
Dondi Imperial
Software Engineer
Exist Software Labs
Marketing Coordinator
Penthouse I, Prestige Tower,
F. Ortigas Jr. Ave. (formerly Emerald Ave.),
Ortigas Center, Pasig City 1605
Philippines 
+632.687.7653
www.exist.com



Re: Could not build geronimo rev 189685

Posted by Dondi Imperial <di...@exist.com>.
I was only able to build after i downloaded the offending jar from 
http://cvs.apache.org/repository/cglib/jars/ .

HTH,

Yoseph Widjaya wrote:

>Hi Geronimoer
>
>Same thing happen to me cannot build the geronimo
>server any idea ????
>
>also for helping in building geronimo any idea where i
>can help
>
>many thank
>
>Yosep
>--- Dondi Imperial <di...@exist.com> wrote:
>
>  
>
>>I could not build geronimo rev 189685 using the "For
>>the impatient..." 
>>instructions on the wiki. I tried looking for the
>>offending jar in 
>>ibiblio and sourceforge but could not see it there
>>either. Here is the 
>>failure message.
>>
>>BUILD FAILED
>>File...... C:\Documents and 
>>
>>    
>>
>Settings\exist_user2\.maven\cache\maven-multiproject-plugin-1.3.1\plugin
>  
>
>>.jelly
>>Element... maven:reactor
>>Line...... 217
>>Column.... 9
>>The build cannot continue because of the following
>>unsatisfied dependency:
>>
>>cglib-nodep-HEAD-06-06-05.jar (try downloading from
>>http://cglib.sf.net/)
>>
>>-- 
>>Dondi Imperial
>>Software Engineer
>>Exist Software Labs
>>Marketing Coordinator
>>Penthouse I, Prestige Tower,
>>F. Ortigas Jr. Ave. (formerly Emerald Ave.),
>>Ortigas Center, Pasig City 1605
>>Philippines 
>>+632.687.7653
>>www.exist.com
>>
>>
>>
>>    
>>
>
>
>
>		
>__________________________________ 
>Discover Yahoo! 
>Find restaurants, movies, travel and more fun for the weekend. Check it out! 
>http://discover.yahoo.com/weekend.html 
>
>  
>


-- 
Dondi Imperial
Software Engineer
Exist Software Labs
Penthouse I, Prestige Tower,
F. Ortigas Jr. Ave. (formerly Emerald Ave.),
Ortigas Center, Pasig City 1605
Philippines 
+632.687.7653
www.exist.com



CGLib update (was Re: Could not build geronimo rev 189685)

Posted by si...@insession.com.
sissonj@insession.com wrote on 17/06/2005 10:23:50 AM:

> 
> 
> Dain Sundstrom <da...@iq80.com> wrote on 17/06/2005 05:05:26 AM:
> 
> > 
> > On Jun 15, 2005, at 10:07 PM, sissonj@insession.com wrote:
> > 
> > > Dain, FYI, I tried changing my build to use a manually downloaded 
> > > cglib-nodep-2.1.1 but the build fails with:
> > >
> > > java:compile:
> > >     [depend] Deleted 0 out of date files in 0 seconds
> > >     [echo] Compiling to C:\Projects\J2EE\geronimo\modules\kernel/ 
> > > target/classes
> > >     [javac] Compiling 106 source files to C:\Projects\J2EE\geronimo 
> > > \modules\kernel\target\classes
> > > C:\Projects\J2EE\geronimo\modules\kernel\src\java\org\apache 
> > > \geronimo\kernel\basic\ProxyMethodInterceptor.java:27: package 
> > > net.sf.cg
> > > lib.asm does not exist
> > > import net.sf.cglib.asm.Type;
> > >
> > > Looking in the cglib-nodep-2.1.1.jar it appears that the 
> > > net.sf.cglib.asm package has moved to org.objectweb.asm .
> > >
> > > This wasn't mentioned in the release notes for the 2.1.1 cglib 
> > > release, so I'm not sure if it is intentional.
> > 
> > Doh!  Forgot I was going to look at this.
> > 
> > The issue is you need to use the cglib-nodepend jar which should 
> > contain the net.sf.cglib.asm.  CGLib uses the jarjar tool which 
> > repackages the asm classes into a private cglib package so their 
> > version does not conflict with a user's use of asm.  The normal 
> > version of the cglib jar uses the org.objectweb.asm classes directly.
> > 
> > -dain
> 
> I did download the "cglib-nodep-2.1_1.jar" from sourceforge and it 
> did not have the asm package under net.sf.cglib.  Is this the JAR 
> that you were refering to?  Maybe it has been packaged incorrectly? 
> 

FYI, It appears the cglib packaging problem has been fixed in a new 
version - cglib-nodep-2.1_2.jar but the JAR is not in ibiblio.  I have 
sent a mail to the cglib dev list asking them to upload to ibiblio.

> John

Re: Could not build geronimo rev 189685

Posted by si...@insession.com.
Dain Sundstrom <da...@iq80.com> wrote on 17/06/2005 05:05:26 AM:

> 
> On Jun 15, 2005, at 10:07 PM, sissonj@insession.com wrote:
> 
> > Dain, FYI, I tried changing my build to use a manually downloaded 
> > cglib-nodep-2.1.1 but the build fails with:
> >
> > java:compile:
> >     [depend] Deleted 0 out of date files in 0 seconds
> >     [echo] Compiling to C:\Projects\J2EE\geronimo\modules\kernel/ 
> > target/classes
> >     [javac] Compiling 106 source files to C:\Projects\J2EE\geronimo 
> > \modules\kernel\target\classes
> > C:\Projects\J2EE\geronimo\modules\kernel\src\java\org\apache 
> > \geronimo\kernel\basic\ProxyMethodInterceptor.java:27: package 
> > net.sf.cg
> > lib.asm does not exist
> > import net.sf.cglib.asm.Type;
> >
> > Looking in the cglib-nodep-2.1.1.jar it appears that the 
> > net.sf.cglib.asm package has moved to org.objectweb.asm .
> >
> > This wasn't mentioned in the release notes for the 2.1.1 cglib 
> > release, so I'm not sure if it is intentional.
> 
> Doh!  Forgot I was going to look at this.
> 
> The issue is you need to use the cglib-nodepend jar which should 
> contain the net.sf.cglib.asm.  CGLib uses the jarjar tool which 
> repackages the asm classes into a private cglib package so their 
> version does not conflict with a user's use of asm.  The normal 
> version of the cglib jar uses the org.objectweb.asm classes directly.
> 
> -dain

I did download the "cglib-nodep-2.1_1.jar" from sourceforge and it did not 
have the asm package under net.sf.cglib.  Is this the JAR that you were 
refering to?  Maybe it has been packaged incorrectly?

John

Re: Could not build geronimo rev 189685

Posted by Dain Sundstrom <da...@iq80.com>.
On Jun 15, 2005, at 10:07 PM, sissonj@insession.com wrote:

> Dain, FYI, I tried changing my build to use a manually downloaded  
> cglib-nodep-2.1.1 but the build fails with:
>
> java:compile:
>     [depend] Deleted 0 out of date files in 0 seconds
>     [echo] Compiling to C:\Projects\J2EE\geronimo\modules\kernel/ 
> target/classes
>     [javac] Compiling 106 source files to C:\Projects\J2EE\geronimo 
> \modules\kernel\target\classes
> C:\Projects\J2EE\geronimo\modules\kernel\src\java\org\apache 
> \geronimo\kernel\basic\ProxyMethodInterceptor.java:27: package  
> net.sf.cg
> lib.asm does not exist
> import net.sf.cglib.asm.Type;
>
> Looking in the cglib-nodep-2.1.1.jar it appears that the  
> net.sf.cglib.asm package has moved to org.objectweb.asm .
>
> This wasn't mentioned in the release notes for the 2.1.1 cglib  
> release, so I'm not sure if it is intentional.

Doh!  Forgot I was going to look at this.

The issue is you need to use the cglib-nodepend jar which should  
contain the net.sf.cglib.asm.  CGLib uses the jarjar tool which  
repackages the asm classes into a private cglib package so their  
version does not conflict with a user's use of asm.  The normal  
version of the cglib jar uses the org.objectweb.asm classes directly.

-dain

Re: Could not build geronimo rev 189685

Posted by si...@insession.com.
Dain Sundstrom <da...@iq80.com> wrote on 10/06/2005 12:37:37 PM:

> The jar is here:
> 
> http://cvs.apache.org/repository/cglib/jars/cglib-nodep- 
> HEAD-06-06-05.jar
> 
> This is a bit crazy.  The jar is in the repository in the right 
> directory, with the right permissions.  You can tell because you can 
> download it.
> 
> I'm going to upgrade to the official 2.1.1 release (which I'll get 
> put on ibiblio) now that it is our, but I am concerned with the fact 
> that this didn't work.
> 
> -dain

Dain, FYI, I tried changing my build to use a manually downloaded 
cglib-nodep-2.1.1 but the build fails with:

java:compile:
    [depend] Deleted 0 out of date files in 0 seconds
    [echo] Compiling to 
C:\Projects\J2EE\geronimo\modules\kernel/target/classes
    [javac] Compiling 106 source files to 
C:\Projects\J2EE\geronimo\modules\kernel\target\classes
C:\Projects\J2EE\geronimo\modules\kernel\src\java\org\apache\geronimo\kernel\basic\ProxyMethodInterceptor.java:27: 
package net.sf.cg
lib.asm does not exist
import net.sf.cglib.asm.Type;

Looking in the cglib-nodep-2.1.1.jar it appears that the net.sf.cglib.asm 
package has moved to org.objectweb.asm .

This wasn't mentioned in the release notes for the 2.1.1 cglib release, so 
I'm not sure if it is intentional.

John

Re: Could not build geronimo rev 189685

Posted by Dain Sundstrom <da...@iq80.com>.
The jar is here:

http://cvs.apache.org/repository/cglib/jars/cglib-nodep- 
HEAD-06-06-05.jar

This is a bit crazy.  The jar is in the repository in the right  
directory, with the right permissions.  You can tell because you can  
download it.

I'm going to upgrade to the official 2.1.1 release (which I'll get  
put on ibiblio) now that it is our, but I am concerned with the fact  
that this didn't work.

-dain

On Jun 9, 2005, at 7:00 PM, Matt Hogstrom wrote:

> Dondi,
>
> I have the jar I'll send to you directly as to not pollute the  
> list.  It goes in .maven\repository\cglib\jars
>
>
> ----- Original Message -----
> From: "Dondi Imperial" <di...@exist.com>
> To: <de...@geronimo.apache.org>
> Sent: Thursday, June 09, 2005 8:54 PM
> Subject: Re: Could not build geronimo rev 189685
>
>
>
>> It still doesn't work for me. It fails to download
>> cglib-nodep-HEAD-06-06-05.jar in the geronimo :: kernel module. I  
>> tried
>> this a couple of times and got the same result. Funny thing though, I
>> tried building just the kernel module by cding into the modules/ 
>> kernel
>> folder then typing maven and this worked. It did download the  
>> cglib jar.
>>
>> HTH,
>>
>> Dain Sundstrom wrote:
>>
>>
>>> Has this been resolved for everyone?
>>>
>>> I just double checked the permissions on the repository and it looks
>>> good.  If this problem happens to you can you make sure to post  
>>> which
>>> module failed.
>>>
>>> Thanks,
>>>
>>> -dain
>>>
>>> On Jun 8, 2005, at 10:03 PM, Matt Hogstrom wrote:
>>>
>>>
>>>> I just rebuilt from scratch about an hour ago and everything  
>>>> worked  ok.
>>>>
>>>> ----- Original Message ----- From: "Yoseph Widjaya"
>>>> <yo...@yahoo.com>
>>>>
>>>>
>>>>> Hi Geronimoer
>>>>>
>>>>> Same thing happen to me cannot build the geronimo
>>>>> server any idea ????
>>>>>
>>>>> also for helping in building geronimo any idea where i
>>>>> can help
>>>>>
>>>>> many thank
>>>>>
>>>>> Yosep
>>>>> --- Dondi Imperial <di...@exist.com> wrote:
>>>>>
>>>>>
>>>>>
>>>>>> I could not build geronimo rev 189685 using the "For
>>>>>> the impatient..."
>>>>>> instructions on the wiki. I tried looking for the
>>>>>> offending jar in
>>>>>> ibiblio and sourceforge but could not see it there
>>>>>> either. Here is the
>>>>>> failure message.
>>>>>>
>>>>>> BUILD FAILED
>>>>>> File...... C:\Documents and
>>>>>>
>>>>>>
>>>>>>
>>>>> Settings\exist_user2\.maven\cache\maven-multiproject-plugin-1.3.1
>>>>> \plugin
>>>>>
>>>>>
>>>>>> .jelly
>>>>>> Element... maven:reactor
>>>>>> Line...... 217
>>>>>> Column.... 9
>>>>>> The build cannot continue because of the following
>>>>>> unsatisfied dependency:
>>>>>>
>>>>>> cglib-nodep-HEAD-06-06-05.jar (try downloading from
>>>>>> http://cglib.sf.net/)
>>>>>>
>>>>>> -- 
>>>>>> Dondi Imperial
>>>>>> Software Engineer
>>>>>> Exist Software Labs
>>>>>> Marketing Coordinator
>>>>>> Penthouse I, Prestige Tower,
>>>>>> F. Ortigas Jr. Ave. (formerly Emerald Ave.),
>>>>>> Ortigas Center, Pasig City 1605
>>>>>> Philippines
>>>>>> +632.687.7653
>>>>>> www.exist.com
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> __________________________________
>>>>> Discover Yahoo!
>>>>> Find restaurants, movies, travel and more fun for the weekend.
>>>>> Check it out!
>>>>> http://discover.yahoo.com/weekend.html
>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>
>>>
>>
>>
>> -- 
>> Dondi Imperial
>> Software Engineer
>> Exist Software Labs
>> Penthouse I, Prestige Tower,
>> F. Ortigas Jr. Ave. (formerly Emerald Ave.),
>> Ortigas Center, Pasig City 1605
>> Philippines
>> +632.687.7653
>> www.exist.com
>>
>>
>>
>>
>


Re: Could not build geronimo rev 189685

Posted by Yoseph Widjaya <yo...@yahoo.com>.
Dear 

It's seems that mine is failed when compiling the
timer modules dunno why.  same message I copied the
message hopefully someone can track the trouble 

here are the stack trace

test:prepare-filesystem:
    [mkdir] Created dir:
/home/yosep/geronimo/modules/timer/target/test-classes
    [mkdir] Created dir:
/home/yosep/geronimo/modules/timer/target/test-reports
 
test:test-resources:
 
test:compile:
    [javac] Compiling 6 source files to
/home/yosep/geronimo/modules/timer/target/test-classes
 
test:test:
    [junit] Running
org.apache.geronimo.timer.TransactionalThreadPooledTimerTest
   [junit] Tests run: 10, Failures: 1, Errors: 0, Time
elapsed: 30.886 sec
    [junit] [ERROR] TEST
org.apache.geronimo.timer.TransactionalThreadPooledTimerTest
FAILED
    [junit] Running
org.apache.geronimo.timer.jdbc.AxionJDBCWorkerPersistenceTest
    [junit] Tests run: 3, Failures: 0, Errors: 0, Time
elapsed: 5.746 sec
    [junit] Running
org.apache.geronimo.timer.jdbc.DerbyJDBCWorkerPersistenceTest
    [junit] Tests run: 3, Failures: 0, Errors: 0, Time
elapsed: 49.001 sec
    [junit] Running
org.apache.geronimo.timer.NontransactionalThreadPooledTimerTest
    [junit] Tests run: 10, Failures: 0, Errors: 0,
Time elapsed: 25.887 sec
 
BUILD FAILED
File......
/home/yosep/.maven/cache/maven-multiproject-plugin-1.3.1/plugin.jellyElement...
maven:reactor
Line...... 217
Column.... 9
Unable to obtain goal [default] --
/home/yosep/.maven/cache/maven-test-plugin-1.6.2/plugin.jelly:181:54:
<fail> There were test failures.
Total time: 51 minutes 58 seconds
Finished at: Fri Jun 10 11:57:16 EST 2005

many thanks

--- Matt Hogstrom <ma...@hogstrom.org> wrote:

> Dondi, 
> 
> I have the jar I'll send to you directly as to not
> pollute the list.  It goes in
> .maven\repository\cglib\jars
> 
> 
> ----- Original Message ----- 
> From: "Dondi Imperial" <di...@exist.com>
> To: <de...@geronimo.apache.org>
> Sent: Thursday, June 09, 2005 8:54 PM
> Subject: Re: Could not build geronimo rev 189685
> 
> 
> > It still doesn't work for me. It fails to download
> 
> > cglib-nodep-HEAD-06-06-05.jar in the geronimo ::
> kernel module. I tried 
> > this a couple of times and got the same result.
> Funny thing though, I 
> > tried building just the kernel module by cding
> into the modules/kernel 
> > folder then typing maven and this worked. It did
> download the cglib jar.
> > 
> > HTH,
> > 
> > Dain Sundstrom wrote:
> > 
> >> Has this been resolved for everyone?
> >>
> >> I just double checked the permissions on the
> repository and it looks  
> >> good.  If this problem happens to you can you
> make sure to post which  
> >> module failed.
> >>
> >> Thanks,
> >>
> >> -dain
> >>
> >> On Jun 8, 2005, at 10:03 PM, Matt Hogstrom wrote:
> >>
> >>> I just rebuilt from scratch about an hour ago
> and everything worked  ok.
> >>>
> >>> ----- Original Message ----- From: "Yoseph
> Widjaya"  
> >>> <yo...@yahoo.com>
> >>>
> >>>> Hi Geronimoer
> >>>>
> >>>> Same thing happen to me cannot build the
> geronimo
> >>>> server any idea ????
> >>>>
> >>>> also for helping in building geronimo any idea
> where i
> >>>> can help
> >>>>
> >>>> many thank
> >>>>
> >>>> Yosep
> >>>> --- Dondi Imperial <di...@exist.com> wrote:
> >>>>
> >>>>
> >>>>> I could not build geronimo rev 189685 using
> the "For
> >>>>> the impatient..."
> >>>>> instructions on the wiki. I tried looking for
> the
> >>>>> offending jar in
> >>>>> ibiblio and sourceforge but could not see it
> there
> >>>>> either. Here is the
> >>>>> failure message.
> >>>>>
> >>>>> BUILD FAILED
> >>>>> File...... C:\Documents and
> >>>>>
> >>>>>
> >>>>
>
Settings\exist_user2\.maven\cache\maven-multiproject-plugin-1.3.1
> 
> >>>> \plugin
> >>>>
> >>>>> .jelly
> >>>>> Element... maven:reactor
> >>>>> Line...... 217
> >>>>> Column.... 9
> >>>>> The build cannot continue because of the
> following
> >>>>> unsatisfied dependency:
> >>>>>
> >>>>> cglib-nodep-HEAD-06-06-05.jar (try downloading
> from
> >>>>> http://cglib.sf.net/)
> >>>>>
> >>>>> -- 
> >>>>> Dondi Imperial
> >>>>> Software Engineer
> >>>>> Exist Software Labs
> >>>>> Marketing Coordinator
> >>>>> Penthouse I, Prestige Tower,
> >>>>> F. Ortigas Jr. Ave. (formerly Emerald Ave.),
> >>>>> Ortigas Center, Pasig City 1605
> >>>>> Philippines
> >>>>> +632.687.7653
> >>>>> www.exist.com
> >>>>>
> >>>>>
> >>>>>
> >>>>>
> >>>>
> >>>>
> >>>>
> >>>>
> >>>> __________________________________
> >>>> Discover Yahoo!
> >>>> Find restaurants, movies, travel and more fun
> for the weekend.  
> >>>> Check it out!
> >>>> http://discover.yahoo.com/weekend.html
> >>>>
> >>>>
> >>>
> >>
> > 
> > 
> > -- 
> > Dondi Imperial
> > Software Engineer
> > Exist Software Labs
> > Penthouse I, Prestige Tower,
> > F. Ortigas Jr. Ave. (formerly Emerald Ave.),
> > Ortigas Center, Pasig City 1605
> > Philippines 
> > +632.687.7653
> > www.exist.com
> > 
> > 
> > 
> >



		
__________________________________ 
Yahoo! Mail 
Stay connected, organized, and protected. Take the tour: 
http://tour.mail.yahoo.com/mailtour.html 


Re: Could not build geronimo rev 189685

Posted by Matt Hogstrom <ma...@hogstrom.org>.
Dondi, 

I have the jar I'll send to you directly as to not pollute the list.  It goes in .maven\repository\cglib\jars


----- Original Message ----- 
From: "Dondi Imperial" <di...@exist.com>
To: <de...@geronimo.apache.org>
Sent: Thursday, June 09, 2005 8:54 PM
Subject: Re: Could not build geronimo rev 189685


> It still doesn't work for me. It fails to download 
> cglib-nodep-HEAD-06-06-05.jar in the geronimo :: kernel module. I tried 
> this a couple of times and got the same result. Funny thing though, I 
> tried building just the kernel module by cding into the modules/kernel 
> folder then typing maven and this worked. It did download the cglib jar.
> 
> HTH,
> 
> Dain Sundstrom wrote:
> 
>> Has this been resolved for everyone?
>>
>> I just double checked the permissions on the repository and it looks  
>> good.  If this problem happens to you can you make sure to post which  
>> module failed.
>>
>> Thanks,
>>
>> -dain
>>
>> On Jun 8, 2005, at 10:03 PM, Matt Hogstrom wrote:
>>
>>> I just rebuilt from scratch about an hour ago and everything worked  ok.
>>>
>>> ----- Original Message ----- From: "Yoseph Widjaya"  
>>> <yo...@yahoo.com>
>>>
>>>> Hi Geronimoer
>>>>
>>>> Same thing happen to me cannot build the geronimo
>>>> server any idea ????
>>>>
>>>> also for helping in building geronimo any idea where i
>>>> can help
>>>>
>>>> many thank
>>>>
>>>> Yosep
>>>> --- Dondi Imperial <di...@exist.com> wrote:
>>>>
>>>>
>>>>> I could not build geronimo rev 189685 using the "For
>>>>> the impatient..."
>>>>> instructions on the wiki. I tried looking for the
>>>>> offending jar in
>>>>> ibiblio and sourceforge but could not see it there
>>>>> either. Here is the
>>>>> failure message.
>>>>>
>>>>> BUILD FAILED
>>>>> File...... C:\Documents and
>>>>>
>>>>>
>>>> Settings\exist_user2\.maven\cache\maven-multiproject-plugin-1.3.1 
>>>> \plugin
>>>>
>>>>> .jelly
>>>>> Element... maven:reactor
>>>>> Line...... 217
>>>>> Column.... 9
>>>>> The build cannot continue because of the following
>>>>> unsatisfied dependency:
>>>>>
>>>>> cglib-nodep-HEAD-06-06-05.jar (try downloading from
>>>>> http://cglib.sf.net/)
>>>>>
>>>>> -- 
>>>>> Dondi Imperial
>>>>> Software Engineer
>>>>> Exist Software Labs
>>>>> Marketing Coordinator
>>>>> Penthouse I, Prestige Tower,
>>>>> F. Ortigas Jr. Ave. (formerly Emerald Ave.),
>>>>> Ortigas Center, Pasig City 1605
>>>>> Philippines
>>>>> +632.687.7653
>>>>> www.exist.com
>>>>>
>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>>
>>>>
>>>> __________________________________
>>>> Discover Yahoo!
>>>> Find restaurants, movies, travel and more fun for the weekend.  
>>>> Check it out!
>>>> http://discover.yahoo.com/weekend.html
>>>>
>>>>
>>>
>>
> 
> 
> -- 
> Dondi Imperial
> Software Engineer
> Exist Software Labs
> Penthouse I, Prestige Tower,
> F. Ortigas Jr. Ave. (formerly Emerald Ave.),
> Ortigas Center, Pasig City 1605
> Philippines 
> +632.687.7653
> www.exist.com
> 
> 
> 
>

Re: Could not build geronimo rev 189685

Posted by Dondi Imperial <di...@exist.com>.
It still doesn't work for me. It fails to download 
cglib-nodep-HEAD-06-06-05.jar in the geronimo :: kernel module. I tried 
this a couple of times and got the same result. Funny thing though, I 
tried building just the kernel module by cding into the modules/kernel 
folder then typing maven and this worked. It did download the cglib jar.

HTH,

Dain Sundstrom wrote:

> Has this been resolved for everyone?
>
> I just double checked the permissions on the repository and it looks  
> good.  If this problem happens to you can you make sure to post which  
> module failed.
>
> Thanks,
>
> -dain
>
> On Jun 8, 2005, at 10:03 PM, Matt Hogstrom wrote:
>
>> I just rebuilt from scratch about an hour ago and everything worked  ok.
>>
>> ----- Original Message ----- From: "Yoseph Widjaya"  
>> <yo...@yahoo.com>
>>
>>> Hi Geronimoer
>>>
>>> Same thing happen to me cannot build the geronimo
>>> server any idea ????
>>>
>>> also for helping in building geronimo any idea where i
>>> can help
>>>
>>> many thank
>>>
>>> Yosep
>>> --- Dondi Imperial <di...@exist.com> wrote:
>>>
>>>
>>>> I could not build geronimo rev 189685 using the "For
>>>> the impatient..."
>>>> instructions on the wiki. I tried looking for the
>>>> offending jar in
>>>> ibiblio and sourceforge but could not see it there
>>>> either. Here is the
>>>> failure message.
>>>>
>>>> BUILD FAILED
>>>> File...... C:\Documents and
>>>>
>>>>
>>> Settings\exist_user2\.maven\cache\maven-multiproject-plugin-1.3.1 
>>> \plugin
>>>
>>>> .jelly
>>>> Element... maven:reactor
>>>> Line...... 217
>>>> Column.... 9
>>>> The build cannot continue because of the following
>>>> unsatisfied dependency:
>>>>
>>>> cglib-nodep-HEAD-06-06-05.jar (try downloading from
>>>> http://cglib.sf.net/)
>>>>
>>>> -- 
>>>> Dondi Imperial
>>>> Software Engineer
>>>> Exist Software Labs
>>>> Marketing Coordinator
>>>> Penthouse I, Prestige Tower,
>>>> F. Ortigas Jr. Ave. (formerly Emerald Ave.),
>>>> Ortigas Center, Pasig City 1605
>>>> Philippines
>>>> +632.687.7653
>>>> www.exist.com
>>>>
>>>>
>>>>
>>>>
>>>
>>>
>>>
>>>
>>> __________________________________
>>> Discover Yahoo!
>>> Find restaurants, movies, travel and more fun for the weekend.  
>>> Check it out!
>>> http://discover.yahoo.com/weekend.html
>>>
>>>
>>
>


-- 
Dondi Imperial
Software Engineer
Exist Software Labs
Penthouse I, Prestige Tower,
F. Ortigas Jr. Ave. (formerly Emerald Ave.),
Ortigas Center, Pasig City 1605
Philippines 
+632.687.7653
www.exist.com



Re: Could not build geronimo rev 189685

Posted by Dain Sundstrom <da...@iq80.com>.
Has this been resolved for everyone?

I just double checked the permissions on the repository and it looks  
good.  If this problem happens to you can you make sure to post which  
module failed.

Thanks,

-dain

On Jun 8, 2005, at 10:03 PM, Matt Hogstrom wrote:

> I just rebuilt from scratch about an hour ago and everything worked  
> ok.
>
> ----- Original Message ----- From: "Yoseph Widjaya"  
> <yo...@yahoo.com>
>
>> Hi Geronimoer
>>
>> Same thing happen to me cannot build the geronimo
>> server any idea ????
>>
>> also for helping in building geronimo any idea where i
>> can help
>>
>> many thank
>>
>> Yosep
>> --- Dondi Imperial <di...@exist.com> wrote:
>>
>>
>>> I could not build geronimo rev 189685 using the "For
>>> the impatient..."
>>> instructions on the wiki. I tried looking for the
>>> offending jar in
>>> ibiblio and sourceforge but could not see it there
>>> either. Here is the
>>> failure message.
>>>
>>> BUILD FAILED
>>> File...... C:\Documents and
>>>
>>>
>> Settings\exist_user2\.maven\cache\maven-multiproject-plugin-1.3.1 
>> \plugin
>>
>>> .jelly
>>> Element... maven:reactor
>>> Line...... 217
>>> Column.... 9
>>> The build cannot continue because of the following
>>> unsatisfied dependency:
>>>
>>> cglib-nodep-HEAD-06-06-05.jar (try downloading from
>>> http://cglib.sf.net/)
>>>
>>> -- 
>>> Dondi Imperial
>>> Software Engineer
>>> Exist Software Labs
>>> Marketing Coordinator
>>> Penthouse I, Prestige Tower,
>>> F. Ortigas Jr. Ave. (formerly Emerald Ave.),
>>> Ortigas Center, Pasig City 1605
>>> Philippines
>>> +632.687.7653
>>> www.exist.com
>>>
>>>
>>>
>>>
>>
>>
>>
>>
>> __________________________________
>> Discover Yahoo!
>> Find restaurants, movies, travel and more fun for the weekend.  
>> Check it out!
>> http://discover.yahoo.com/weekend.html
>>
>>
>


Re: Could not build geronimo rev 189685

Posted by Matt Hogstrom <ma...@hogstrom.org>.
I just rebuilt from scratch about an hour ago and everything worked ok.


----- Original Message ----- 
From: "Yoseph Widjaya" <yo...@yahoo.com>
To: <de...@geronimo.apache.org>; <di...@exist.com>
Sent: Thursday, June 09, 2005 12:56 AM
Subject: Re: Could not build geronimo rev 189685


>
> Hi Geronimoer
>
> Same thing happen to me cannot build the geronimo
> server any idea ????
>
> also for helping in building geronimo any idea where i
> can help
>
> many thank
>
> Yosep
> --- Dondi Imperial <di...@exist.com> wrote:
>
>> I could not build geronimo rev 189685 using the "For
>> the impatient..."
>> instructions on the wiki. I tried looking for the
>> offending jar in
>> ibiblio and sourceforge but could not see it there
>> either. Here is the
>> failure message.
>>
>> BUILD FAILED
>> File...... C:\Documents and
>>
> Settings\exist_user2\.maven\cache\maven-multiproject-plugin-1.3.1\plugin
>> .jelly
>> Element... maven:reactor
>> Line...... 217
>> Column.... 9
>> The build cannot continue because of the following
>> unsatisfied dependency:
>>
>> cglib-nodep-HEAD-06-06-05.jar (try downloading from
>> http://cglib.sf.net/)
>>
>> -- 
>> Dondi Imperial
>> Software Engineer
>> Exist Software Labs
>> Marketing Coordinator
>> Penthouse I, Prestige Tower,
>> F. Ortigas Jr. Ave. (formerly Emerald Ave.),
>> Ortigas Center, Pasig City 1605
>> Philippines
>> +632.687.7653
>> www.exist.com
>>
>>
>>
>
>
>
>
> __________________________________
> Discover Yahoo!
> Find restaurants, movies, travel and more fun for the weekend. Check it 
> out!
> http://discover.yahoo.com/weekend.html
>
>
> 


Re: Could not build geronimo rev 189685

Posted by Yoseph Widjaya <yo...@yahoo.com>.
Hi Geronimoer

Same thing happen to me cannot build the geronimo
server any idea ????

also for helping in building geronimo any idea where i
can help

many thank

Yosep
--- Dondi Imperial <di...@exist.com> wrote:

> I could not build geronimo rev 189685 using the "For
> the impatient..." 
> instructions on the wiki. I tried looking for the
> offending jar in 
> ibiblio and sourceforge but could not see it there
> either. Here is the 
> failure message.
> 
> BUILD FAILED
> File...... C:\Documents and 
>
Settings\exist_user2\.maven\cache\maven-multiproject-plugin-1.3.1\plugin
> .jelly
> Element... maven:reactor
> Line...... 217
> Column.... 9
> The build cannot continue because of the following
> unsatisfied dependency:
> 
> cglib-nodep-HEAD-06-06-05.jar (try downloading from
> http://cglib.sf.net/)
> 
> -- 
> Dondi Imperial
> Software Engineer
> Exist Software Labs
> Marketing Coordinator
> Penthouse I, Prestige Tower,
> F. Ortigas Jr. Ave. (formerly Emerald Ave.),
> Ortigas Center, Pasig City 1605
> Philippines 
> +632.687.7653
> www.exist.com
> 
> 
> 



		
__________________________________ 
Discover Yahoo! 
Find restaurants, movies, travel and more fun for the weekend. Check it out! 
http://discover.yahoo.com/weekend.html