You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@geronimo.apache.org by Rick McGuire <ri...@gmail.com> on 2007/03/27 12:57:48 UTC

Multiple build problems in trunk

I'm getting multiple compile problems on trunk this morning.  The first 
problem is this one:

|[INFO] ------------------------------------------------------------------------|
|[ERROR] BUILD FAILURE|
|[INFO] ------------------------------------------------------------------------|
|[INFO] Compilation failure|
|/home/rick/Geronimo/builds/g/2.0/modules/geronimo-axis2/src/main/java/org/apache/geronimo/axis2/AxisServiceGenerator.java:[113,45] cannot find symbol|
|symbol  : variable DEFAULT_NAMESPACE_URI|
|location: interface org.apache.axis2.wsdl.WSDLConstants.WSDL20_2006Constants|
| |
| |
| |
|/home/rick/Geronimo/builds/g/2.0/modules/geronimo-axis2/src/main/java/org/apache/geronimo/axis2/AxisServiceGenerator.java:[113,45] cannot find symbol|
|symbol  : variable DEFAULT_NAMESPACE_URI|
|location: interface org.apache.axis2.wsdl.WSDLConstants.WSDL20_2006Constants


There have not been any updates to this class in the last 24 hours, but 
on checking out the Axis2 code, I don't see the DEFAULT_NAMESPACE_URI 
constant defined any more.  Looks like a new Axis2 SNAPSHOT has broken 
this. 

If I comment out the problem lines in the AxisServiceGenerator, an 
encounter a different build problem: 

|
|[INFO] ------------------------------------------------------------------------|
|[ERROR] BUILD ERROR|
|[INFO] ------------------------------------------------------------------------|
|[INFO] org.apache.geronimo.gbean.InvalidConfigurationException: Could not find getGBeanInfo method on org.apache.geronimo.gjndi.GlobalContextGBean|
| |
|edu/emory/mathcs/backport/java/util/concurrent/locks/Lock|
|[INFO] ------------------------------------------------------------------------|
|[INFO] For more information, run Maven with the -e switch|
|[INFO] ------------------------------------------------------------------------|
|[INFO] Total time: 7 minutes 6 seconds|
|[INFO] Finished at: Tue Mar 27 06:47:13 EDT 2007|
|[INFO] Final Memory: 103M/254M|
|[INFO] ------------------------------------------------------------------------|
|[rick@mcguire 2.0]$ svn up|
| 

Rick
|

|

|


Re: Multiple build problems in trunk

Posted by Kevan Miller <ke...@gmail.com>.
On Mar 27, 2007, at 6:57 AM, Rick McGuire wrote:

> I'm getting multiple compile problems on trunk this morning.  The  
> first problem is this one:
>
> |[INFO]  
> ---------------------------------------------------------------------- 
> --|
> |[ERROR] BUILD FAILURE|
> |[INFO]  
> ---------------------------------------------------------------------- 
> --|
> |[INFO] Compilation failure|
> |/home/rick/Geronimo/builds/g/2.0/modules/geronimo-axis2/src/main/ 
> java/org/apache/geronimo/axis2/AxisServiceGenerator.java:[113,45]  
> cannot find symbol|
> |symbol  : variable DEFAULT_NAMESPACE_URI|
> |location: interface  
> org.apache.axis2.wsdl.WSDLConstants.WSDL20_2006Constants|
> | |
> | |
> | |
> |/home/rick/Geronimo/builds/g/2.0/modules/geronimo-axis2/src/main/ 
> java/org/apache/geronimo/axis2/AxisServiceGenerator.java:[113,45]  
> cannot find symbol|
> |symbol  : variable DEFAULT_NAMESPACE_URI|
> |location: interface  
> org.apache.axis2.wsdl.WSDLConstants.WSDL20_2006Constants

I believe I have this fixed. Testing build now... Should commit  
shortly...

--kevan

Re: Multiple build problems in trunk

Posted by Kevan Miller <ke...@gmail.com>.
On Mar 27, 2007, at 7:52 AM, Rick McGuire wrote:

> Donald Woods wrote:
>> For the second problem, do you have the xbean-naming 3.0-SNAPSHOT  
>> from 3/24 or later in your local repo?  Rebuilding until maven  
>> upgraded mine from the 3/23 to the 3/24 snapshot fixed a similar  
>> problem for me yesterday....
> That fixed it....thanks!

OK. Compile problem should be fixed.

I, also, had to whack XBean from my repo to get around the  
InvalidConfigurationException...

--kevan

Re: Multiple build problems in trunk

Posted by Rick McGuire <ri...@gmail.com>.
Donald Woods wrote:
> For the second problem, do you have the xbean-naming 3.0-SNAPSHOT from 
> 3/24 or later in your local repo?  Rebuilding until maven upgraded 
> mine from the 3/23 to the 3/24 snapshot fixed a similar problem for me 
> yesterday....
That fixed it....thanks!

Rick

>
> -Donald
>
> Rick McGuire wrote:
>> I'm getting multiple compile problems on trunk this morning.  The 
>> first problem is this one:
>>
>> |[INFO] 
>> ------------------------------------------------------------------------| 
>>
>> |[ERROR] BUILD FAILURE|
>> |[INFO] 
>> ------------------------------------------------------------------------| 
>>
>> |[INFO] Compilation failure|
>> |/home/rick/Geronimo/builds/g/2.0/modules/geronimo-axis2/src/main/java/org/apache/geronimo/axis2/AxisServiceGenerator.java:[113,45] 
>> cannot find symbol|
>> |symbol  : variable DEFAULT_NAMESPACE_URI|
>> |location: interface 
>> org.apache.axis2.wsdl.WSDLConstants.WSDL20_2006Constants|
>> | |
>> | |
>> | |
>> |/home/rick/Geronimo/builds/g/2.0/modules/geronimo-axis2/src/main/java/org/apache/geronimo/axis2/AxisServiceGenerator.java:[113,45] 
>> cannot find symbol|
>> |symbol  : variable DEFAULT_NAMESPACE_URI|
>> |location: interface 
>> org.apache.axis2.wsdl.WSDLConstants.WSDL20_2006Constants
>>
>>
>> There have not been any updates to this class in the last 24 hours, 
>> but on checking out the Axis2 code, I don't see the 
>> DEFAULT_NAMESPACE_URI constant defined any more.  Looks like a new 
>> Axis2 SNAPSHOT has broken this.
>> If I comment out the problem lines in the AxisServiceGenerator, an 
>> encounter a different build problem:
>> |
>> |[INFO] 
>> ------------------------------------------------------------------------| 
>>
>> |[ERROR] BUILD ERROR|
>> |[INFO] 
>> ------------------------------------------------------------------------| 
>>
>> |[INFO] org.apache.geronimo.gbean.InvalidConfigurationException: 
>> Could not find getGBeanInfo method on 
>> org.apache.geronimo.gjndi.GlobalContextGBean|
>> | |
>> |edu/emory/mathcs/backport/java/util/concurrent/locks/Lock|
>> |[INFO] 
>> ------------------------------------------------------------------------| 
>>
>> |[INFO] For more information, run Maven with the -e switch|
>> |[INFO] 
>> ------------------------------------------------------------------------| 
>>
>> |[INFO] Total time: 7 minutes 6 seconds|
>> |[INFO] Finished at: Tue Mar 27 06:47:13 EDT 2007|
>> |[INFO] Final Memory: 103M/254M|
>> |[INFO] 
>> ------------------------------------------------------------------------| 
>>
>> |[rick@mcguire 2.0]$ svn up|
>> |
>> Rick
>> |
>>
>> |
>>
>> |
>>
>>
>>


Re: Multiple build problems in trunk

Posted by Donald Woods <dr...@yahoo.com>.
For the second problem, do you have the xbean-naming 3.0-SNAPSHOT from 
3/24 or later in your local repo?  Rebuilding until maven upgraded mine 
from the 3/23 to the 3/24 snapshot fixed a similar problem for me 
yesterday....

-Donald

Rick McGuire wrote:
> I'm getting multiple compile problems on trunk this morning.  The first 
> problem is this one:
> 
> |[INFO] 
> ------------------------------------------------------------------------|
> |[ERROR] BUILD FAILURE|
> |[INFO] 
> ------------------------------------------------------------------------|
> |[INFO] Compilation failure|
> |/home/rick/Geronimo/builds/g/2.0/modules/geronimo-axis2/src/main/java/org/apache/geronimo/axis2/AxisServiceGenerator.java:[113,45] 
> cannot find symbol|
> |symbol  : variable DEFAULT_NAMESPACE_URI|
> |location: interface 
> org.apache.axis2.wsdl.WSDLConstants.WSDL20_2006Constants|
> | |
> | |
> | |
> |/home/rick/Geronimo/builds/g/2.0/modules/geronimo-axis2/src/main/java/org/apache/geronimo/axis2/AxisServiceGenerator.java:[113,45] 
> cannot find symbol|
> |symbol  : variable DEFAULT_NAMESPACE_URI|
> |location: interface 
> org.apache.axis2.wsdl.WSDLConstants.WSDL20_2006Constants
> 
> 
> There have not been any updates to this class in the last 24 hours, but 
> on checking out the Axis2 code, I don't see the DEFAULT_NAMESPACE_URI 
> constant defined any more.  Looks like a new Axis2 SNAPSHOT has broken 
> this.
> If I comment out the problem lines in the AxisServiceGenerator, an 
> encounter a different build problem:
> |
> |[INFO] 
> ------------------------------------------------------------------------|
> |[ERROR] BUILD ERROR|
> |[INFO] 
> ------------------------------------------------------------------------|
> |[INFO] org.apache.geronimo.gbean.InvalidConfigurationException: Could 
> not find getGBeanInfo method on 
> org.apache.geronimo.gjndi.GlobalContextGBean|
> | |
> |edu/emory/mathcs/backport/java/util/concurrent/locks/Lock|
> |[INFO] 
> ------------------------------------------------------------------------|
> |[INFO] For more information, run Maven with the -e switch|
> |[INFO] 
> ------------------------------------------------------------------------|
> |[INFO] Total time: 7 minutes 6 seconds|
> |[INFO] Finished at: Tue Mar 27 06:47:13 EDT 2007|
> |[INFO] Final Memory: 103M/254M|
> |[INFO] 
> ------------------------------------------------------------------------|
> |[rick@mcguire 2.0]$ svn up|
> |
> Rick
> |
> 
> |
> 
> |
> 
> 
>