You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ni...@apache.org on 2009/12/02 10:34:24 UTC

svn commit: r886086 - in /camel/branches/camel-1.x: examples/camel-example-cxf/pom.xml pom.xml

Author: ningjiang
Date: Wed Dec  2 09:34:24 2009
New Revision: 886086

URL: http://svn.apache.org/viewvc?rev=886086&view=rev
Log:
CAMEL-2243 resolved the issue of mvn -Psetup.eclipse

Modified:
    camel/branches/camel-1.x/examples/camel-example-cxf/pom.xml
    camel/branches/camel-1.x/pom.xml

Modified: camel/branches/camel-1.x/examples/camel-example-cxf/pom.xml
URL: http://svn.apache.org/viewvc/camel/branches/camel-1.x/examples/camel-example-cxf/pom.xml?rev=886086&r1=886085&r2=886086&view=diff
==============================================================================
--- camel/branches/camel-1.x/examples/camel-example-cxf/pom.xml (original)
+++ camel/branches/camel-1.x/examples/camel-example-cxf/pom.xml Wed Dec  2 09:34:24 2009
@@ -64,6 +64,11 @@
       <groupId>org.apache.activemq</groupId>
       <artifactId>activemq-core</artifactId>
     </dependency>
+    
+    <dependency>
+	  <groupId>org.apache.xbean</groupId>
+	  <artifactId>xbean-spring</artifactId>
+    </dependency>
 
     <dependency>
       <groupId>xerces</groupId>

Modified: camel/branches/camel-1.x/pom.xml
URL: http://svn.apache.org/viewvc/camel/branches/camel-1.x/pom.xml?rev=886086&r1=886085&r2=886086&view=diff
==============================================================================
--- camel/branches/camel-1.x/pom.xml (original)
+++ camel/branches/camel-1.x/pom.xml Wed Dec  2 09:34:24 2009
@@ -438,6 +438,36 @@
                 <artifactId>camel-buildtools</artifactId>
                 <version>${project.version}</version>
               </dependency>
+              <dependency>
+                <groupId>ant-contrib</groupId>
+                <artifactId>ant-contrib</artifactId>
+                <version>1.0b3</version>
+              </dependency>
+              <dependency>
+                <groupId>javax.xml.bind</groupId>
+                <artifactId>jaxb-api</artifactId>
+                <version>2.1</version>
+              </dependency>
+              <dependency>
+                <groupId>com.sun.xml.bind</groupId>
+                <artifactId>jaxb-impl</artifactId>
+                <version>2.1.5-dev</version>
+              </dependency>
+              <dependency>
+                <groupId>com.sun.xml.bind</groupId>
+                <artifactId>jaxb-xjc</artifactId>
+                <version>2.1.5-dev</version>
+              </dependency>
+              <dependency>
+                <groupId>ant-contrib</groupId>
+                <artifactId>ant-contrib</artifactId>
+                <version>1.0b3</version>
+              </dependency>
+              <dependency>
+                <groupId>ant</groupId>
+                <artifactId>ant-optional</artifactId>
+                <version>1.5.3-1</version>
+              </dependency>
             </dependencies>
             <executions>
               <execution>
@@ -520,7 +550,26 @@
         </plugins>
       </build>
     </profile>
-   
+  
+    <profile>
+      <id>default-tools.jar</id>
+      <activation>
+        <property>
+          <name>java.vendor</name>
+          <value>Sun Microsystems Inc.</value>
+        </property>
+      </activation>
+      <dependencies>
+        <dependency>
+          <groupId>com.sun</groupId>
+          <artifactId>tools</artifactId>
+          <version>1.5.0</version>
+          <scope>system</scope>
+          <systemPath>${java.home}/../lib/tools.jar</systemPath>
+        </dependency>
+      </dependencies>
+    </profile>
+ 
     <profile>
       <id>rat</id>
       <!-- The profile for Apache Release Audit Tool http://incubator.apache.org/rat/ -->