Author: slaws
Date: Mon Jan  7 10:01:58 2008
New Revision: 609726

URL: http://svn.apache.org/viewvc?rev=609726&view=rev
Log:
helloworld-BPEL dependency fixes

Modified:
    incubator/tuscany/branches/sca-java-1.1/distribution/bundle/pom.xml
    incubator/tuscany/branches/sca-java-1.1/modules/binding-ws-axis2/pom.xml
    incubator/tuscany/branches/sca-java-1.1/modules/implementation-bpel/pom.xml
    incubator/tuscany/branches/sca-java-1.1/samples/helloworld-bpel/pom.xml

Modified: incubator/tuscany/branches/sca-java-1.1/distribution/bundle/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-1.1/distribution/bundle/pom.xml?rev=609726&r1=609725&r2=609726&view=diff
==============================================================================
--- incubator/tuscany/branches/sca-java-1.1/distribution/bundle/pom.xml 
(original)
+++ incubator/tuscany/branches/sca-java-1.1/distribution/bundle/pom.xml Mon Jan 
 7 10:01:58 2008
@@ -111,6 +111,32 @@
             <groupId>${pom.groupId}</groupId>
             <artifactId>tuscany-binding-ws-axis2</artifactId>
             <version>${pom.version}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.apache.ant</groupId>
+                    <artifactId>ant-nodeps</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.apache.axis2</groupId>
+                    <artifactId>addressing</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.apache.axis2</groupId>
+                    <artifactId>axis2-xmlbeans</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.apache.axis2</groupId>
+                    <artifactId>axis2-adb-codegen</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>bouncycastle</groupId>
+                    <artifactId>bcprov-jdk15</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>opensaml</groupId>
+                    <artifactId>opensaml</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
         <dependency>
             <groupId>${pom.groupId}</groupId>

Modified: 
incubator/tuscany/branches/sca-java-1.1/modules/binding-ws-axis2/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-1.1/modules/binding-ws-axis2/pom.xml?rev=609726&r1=609725&r2=609726&view=diff
==============================================================================
--- incubator/tuscany/branches/sca-java-1.1/modules/binding-ws-axis2/pom.xml 
(original)
+++ incubator/tuscany/branches/sca-java-1.1/modules/binding-ws-axis2/pom.xml 
Mon Jan  7 10:01:58 2008
@@ -334,8 +334,18 @@
                     <groupId>org.apache.axis2</groupId>
                     <artifactId>axis2-xmlbeans</artifactId>
                 </exclusion>
+                <exclusion>
+                    <groupId>log4j</groupId>
+                    <artifactId>log4j</artifactId>
+                </exclusion>                
             </exclusions>
         </dependency>
+
+        <dependency>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
+            <version>1.2.12</version>
+        </dependency>        
     </dependencies>
 
 </project>

Modified: 
incubator/tuscany/branches/sca-java-1.1/modules/implementation-bpel/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-1.1/modules/implementation-bpel/pom.xml?rev=609726&r1=609725&r2=609726&view=diff
==============================================================================
--- incubator/tuscany/branches/sca-java-1.1/modules/implementation-bpel/pom.xml 
(original)
+++ incubator/tuscany/branches/sca-java-1.1/modules/implementation-bpel/pom.xml 
Mon Jan  7 10:01:58 2008
@@ -224,6 +224,10 @@
                                        <groupId>xstream</groupId>
                                        <artifactId>xstream</artifactId>
                                </exclusion>
+                               <exclusion>
+                                       <groupId>log4j</groupId>
+                                       <artifactId>log4j</artifactId>
+                               </exclusion>                            
                        </exclusions>
                </dependency>
                <dependency>
@@ -310,7 +314,7 @@
                <dependency>
                        <groupId>xerces</groupId>
                        <artifactId>xercesImpl</artifactId>
-                       <version>2.8.0</version>
+                       <version>2.8.1</version>
                </dependency>
                <dependency>
                        <groupId>org.apache.xmlbeans</groupId>
@@ -321,21 +325,22 @@
                        <groupId>net.sf.saxon</groupId>
                        <artifactId>saxon</artifactId>
                        <version>8.7</version>
-                       <!--version>9.0.0.2</version-->
                </dependency>
                <dependency>
                        <groupId>net.sf.saxon</groupId>
                        <artifactId>saxon-dom</artifactId>
             <version>8.7</version>
-            <!--version>9.0.0.2</version-->
                </dependency>
                <dependency>
                        <groupId>net.sf.saxon</groupId>
                        <artifactId>saxon-xpath</artifactId>
             <version>8.7</version>
-            <!--version>9.0.0.2</version-->
                </dependency>
-               
+               <dependency>
+                       <groupId>log4j</groupId>
+                       <artifactId>log4j</artifactId>
+            <version>1.2.12</version>
+               </dependency>           
         <dependency>
            <groupId>commons-codec</groupId>
            <artifactId>commons-codec</artifactId>

Modified: 
incubator/tuscany/branches/sca-java-1.1/samples/helloworld-bpel/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-1.1/samples/helloworld-bpel/pom.xml?rev=609726&r1=609725&r2=609726&view=diff
==============================================================================
--- incubator/tuscany/branches/sca-java-1.1/samples/helloworld-bpel/pom.xml 
(original)
+++ incubator/tuscany/branches/sca-java-1.1/samples/helloworld-bpel/pom.xml Mon 
Jan  7 10:01:58 2008
@@ -54,18 +54,18 @@
             <artifactId>tuscany-implementation-bpel</artifactId>
             <version>1.1-incubating-SNAPSHOT</version>
             <scope>runtime</scope>
-        </dependency>
+        </dependency>       
 
         <dependency>
             <groupId>org.apache.tuscany.sdo</groupId>
             <artifactId>tuscany-sdo-impl</artifactId>
             <version>1.0-incubating</version>
-        </dependency>
+        </dependency>       
 
                <dependency>
                    <groupId>xerces</groupId>
                    <artifactId>xercesImpl</artifactId>
-                   <version>2.8.0</version>
+                   <version>2.8.1</version>
                </dependency>   
                        
         <dependency>
@@ -74,6 +74,39 @@
             <version>4.2</version>
             <scope>test</scope>
         </dependency>
+        
+        <!--  dependencies that must be present in order that the build 
scripts work -->
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-wsdl2java</artifactId>
+            <version>1.1-incubating-SNAPSHOT</version>
+        </dependency> 
+                
+        <dependency>
+            <groupId>org.apache.tuscany.sdo</groupId>
+            <artifactId>tuscany-sdo-tools</artifactId>
+            <version>1.0-incubating</version>
+        </dependency>  
+        
+        <dependency>
+            <groupId>org.codehaus.woodstox</groupId>
+            <artifactId>wstx-asl</artifactId>
+            <version>3.2.1</version>
+            <scope>runtime</scope>
+        </dependency>
+        
+        <dependency>
+            <groupId>com.sun.xml.bind</groupId>
+            <artifactId>jaxb-impl</artifactId>
+            <version>2.1.5</version>
+            <scope>compile</scope>
+            <exclusions>
+                <exclusion>
+                    <groupId>javax.xml.stream</groupId>
+                    <artifactId>stax-api</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>        
 
     </dependencies>
     



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

Reply via email to