Thanks Raymond and Ta. After pointing me out to the changes on the group id for XmlSchema I tried changing "org.apache.ws.commons.schema" to "org.apache.ws.commons".
C:\tuscany4\java>svn diff
Index: sca/tools/pom.xml
===================================================================
--- sca/tools/pom.xml   (revision 468800)
+++ sca/tools/pom.xml   (working copy)
@@ -63,7 +63,8 @@
            <scope>compile</scope>
        </dependency>
        <dependency>
-            <groupId>org.apache.ws.commons.schema</groupId>
+            <!-- groupId>org.apache.ws.commons.schema</groupId -->
+            <groupId>org.apache.ws.commons</groupId>
            <artifactId>XmlSchema</artifactId>
        </dependency>
        <dependency>
Index: sca/services/idl/wsdl/pom.xml
===================================================================
--- sca/services/idl/wsdl/pom.xml       (revision 468800)
+++ sca/services/idl/wsdl/pom.xml       (working copy)
@@ -37,7 +37,8 @@
            <scope>compile</scope>
        </dependency>
        <dependency>
-            <groupId>org.apache.ws.commons.schema</groupId>
+            <!-- groupId>org.apache.ws.commons.schema</groupId -->
+            <groupId>org.apache.ws.commons</groupId>
            <artifactId>XmlSchema</artifactId>
        </dependency>

Index: sca/services/bindings/binding.axis2/pom.xml
===================================================================
--- sca/services/bindings/binding.axis2/pom.xml (revision 468800)
+++ sca/services/bindings/binding.axis2/pom.xml (working copy)
@@ -105,7 +105,8 @@
        </dependency>

        <dependency>
-            <groupId>org.apache.ws.commons.schema</groupId>
+            <!-- groupId>org.apache.ws.commons.schema</groupId -->
+             <groupId>org.apache.ws.commons</groupId>
            <artifactId>XmlSchema</artifactId>
        </dependency>

Index: sca/pom.xml
===================================================================
--- sca/pom.xml (revision 468800)
+++ sca/pom.xml (working copy)
@@ -171,7 +171,8 @@

            <!-- XmlSchema implementation -->
            <dependency>
-                <groupId>org.apache.ws.commons.schema</groupId>
+                <!-- groupId>org.apache.ws.commons.schema</groupId -->
+                <groupId>org.apache.ws.commons</groupId>
                <artifactId>XmlSchema</artifactId>
                <version>SNAPSHOT</version>
                <scope>compile</scope>

Even though I still get a build fail at least is further down in a compilation error:

es
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Compilation failure

C:\tuscany4\java\sca\services\idl\wsdl\src\main\java\org\apache\tuscany\idl\wsdl
\XMLSchemaRegistryImpl.java:[91,56] incompatible types
found   : org.apache.ws.commons.schema.XmlSchema
required: org.apache.ws.commons.schema.XmlSchema[]


Regards,
                   Jeff Rodriguez



From: "Raymond Feng" <[EMAIL PROTECTED]>
Reply-To: [email protected]
To: <[email protected]>
Subject: Re: Build error
Date: Sun, 29 Oct 2006 08:04:51 -0800

It seems the the most recent artifacts from axi2 related projects are not recovered at http://people.apache.org/repo/m1-snapshot-repository/ yet due to the outrage. The group id "org.apache.ws.commons.schema" is the correct one which was changed from "org.apache.ws.commons" as a result of JIRA WSCOMMONS-108.

We should probably check with Axis2 team to see if they can help.

Thanks,
Raymond


----- Original Message ----- From: "Meeraj Kunnumpurath" <[EMAIL PROTECTED]>
To: <[email protected]>
Sent: Sunday, October 29, 2006 3:25 AM
Subject: Re: Build error


I think the group id for XmlSchema has changed. It is no longer org.apache.ws.commons.schema, rather org.apache.ws.commons. The reason I am seeing it now is rebuilt my PC last week and my Maven repo got nuked. However, if you change the group ids in the POMs, it is failing further down on snapshot dependencies for axiom and axis2 kernel.

Ta
Meeraj


From: "Jeffrey Rodriguez" <[EMAIL PROTECTED]>
Reply-To: [email protected]
To: [email protected], [EMAIL PROTECTED]
Subject: Re: Build error
Date: Sun, 29 Oct 2006 05:15:05 +0000

checkout tuscany source..........from a windows machine with all system requirements.

svn co http://svn.apache.org/repos/asf/incubator/tuscany/java

Then run:  mvn   from c:\tuscany\java

I am getting build errors:

Downloading: http://repo1.maven.org/maven2/wsdl4j/wsdl4j/1.5.2/wsdl4j-1.5.2.jar
124K downloaded
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Failed to resolve artifact.

Missing:
----------
1) org.apache.ws.commons.schema:XmlSchema:jar:SNAPSHOT

 Try downloading the file manually from the project website.

 Then, install it using the command:
mvn install:install-file -DgroupId=org.apache.ws.commons.schema -Dartifact
Id=XmlSchema \
         -Dversion=SNAPSHOT -Dpackaging=jar -Dfile=/path/to/file

 Path to dependency:
1) org.apache.tuscany.sca.services.idl:wsdl:jar:1.0-incubator-M2-SNAPSHO
T
       2) org.apache.ws.commons.schema:XmlSchema:jar:SNAPSHOT

----------
1 required artifact is missing.

for artifact:
 org.apache.tuscany.sca.services.idl:wsdl:jar:1.0-incubator-M2-SNAPSHOT

from the specified remote repositories:
 central (http://repo1.maven.org/maven2),
 apache.m1 (http://people.apache.org/repository),
apache.incubator (http://people.apache.org/repo/m2-incubating-repository/),
 apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository)


After uploading XmlSchema from remote repositories and installing are recomended I
get the following:

[INFO] ------------------------------------------------------------------------
[ERROR] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Compilation failure

C:\tuscany4\java\sca\services\idl\wsdl\src\main\java\org\apache\tuscany\idl\wsdl
\XMLSchemaRegistryImpl.java:[91,43] cannot find symbol
symbol  : method getXmlSchema(java.lang.String)
location: class org.apache.ws.commons.schema.XmlSchemaCollection


So I am getting errors build Tuscany, any suggestions? Is this a known build error? Perhaps
comitters haven't notice since they don't build from scratch often.

Regards,
          Jeffrey E. Rodriguez






From: "Bert Lamb" <[EMAIL PROTECTED]>
Reply-To: [email protected]
To: [email protected]
Subject: Re: Build error
Date: Fri, 27 Oct 2006 19:11:21 -0400

I'm getting it too.

-Bert

On 10/27/06, Meeraj Kunnumpurath <[EMAIL PROTECTED]> wrote:
Hi,

Is anyone getting the following build error in DAS RDB?


-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running org.apache.tuscany.das.rdb.test.suites.AllTestsDerby
Setting up for Derby run
Ending Derby run
Tests run: 139, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 17.531 sec
<<<
FAILURE!
testConverter3(org.apache.tuscany.das.rdb.test.ConverterTests)  Time
elapsed: 0.
015 sec  <<< ERROR!
java.lang.RuntimeException: Cannot load configuration from a null
InputStream. P
ossibly caused by an incorrect config xml file name
        at
org.apache.tuscany.das.rdb.util.ConfigUtil.loadConfig(ConfigUtil.java
:44)
at org.apache.tuscany.das.rdb.impl.DASImpl.<init>(DASImpl.java:100)
        at
org.apache.tuscany.das.rdb.impl.DASFactoryImpl.createDAS(DASFactoryIm
pl.java:39)
        at
org.apache.tuscany.das.rdb.test.ConverterTests.testConverter3(Convert
erTests.java:163)


Results :
Tests run: 139, Failures: 0, Errors: 1, Skipped: 0

[INFO]
------------------------------------------------------------------------
[ERROR] BUILD FAILURE
[INFO]
------------------------------------------------------------------------
[INFO] There are test failures.
[INFO]
------------------------------------------------------------------------

Thanks
Meeraj

_________________________________________________________________
Windows Liveâ"¢ Messenger has arrived. Click here to download it for free!
http://imagine-msn.com/messenger/launch80/?locale=en-gb


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



_________________________________________________________________
Stay in touch with old friends and meet new ones with Windows Live Spaces http://clk.atdmt.com/MSN/go/msnnkwsp0070000001msn/direct/01/?href=http://spaces.live.com/spacesapi.aspx?wx_action=create&wx_url=/friends.aspx&mkt=en-us


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


_________________________________________________________________
Windows LiveT Messenger has arrived. Click here to download it for free! http://imagine-msn.com/messenger/launch80/?locale=en-gb


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


_________________________________________________________________
Stay in touch with old friends and meet new ones with Windows Live Spaces http://clk.atdmt.com/MSN/go/msnnkwsp0070000001msn/direct/01/?href=http://spaces.live.com/spacesapi.aspx?wx_action=create&wx_url=/friends.aspx&mkt=en-us


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to