You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by fo...@apache.org on 2006/01/12 06:12:43 UTC

svn commit: r368280 - in /incubator/servicemix/trunk/servicemix-common: maven.xml project.xml

Author: foconer
Date: Wed Jan 11 21:12:33 2006
New Revision: 368280

URL: http://svn.apache.org/viewcvs?rev=368280&view=rev
Log:
maven 1 build files.

Added:
    incubator/servicemix/trunk/servicemix-common/maven.xml
    incubator/servicemix/trunk/servicemix-common/project.xml

Added: incubator/servicemix/trunk/servicemix-common/maven.xml
URL: http://svn.apache.org/viewcvs/incubator/servicemix/trunk/servicemix-common/maven.xml?rev=368280&view=auto
==============================================================================
--- incubator/servicemix/trunk/servicemix-common/maven.xml (added)
+++ incubator/servicemix/trunk/servicemix-common/maven.xml Wed Jan 11 21:12:33 2006
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<!--
+
+    Copyright 2005 The Apache Software Foundation
+
+    Licensed under the Apache License, Version 2.0 (the "License");
+    you may not use this file except in compliance with the License.
+    You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+    
+-->
+
+<project default="default" xmlns:ant="jelly:ant">
+    
+    <!-- goal "build" is inherited from parent pom -->
+    <goal name="default">
+      <attainGoal name="build"/>
+    </goal>
+
+</project>

Added: incubator/servicemix/trunk/servicemix-common/project.xml
URL: http://svn.apache.org/viewcvs/incubator/servicemix/trunk/servicemix-common/project.xml?rev=368280&view=auto
==============================================================================
--- incubator/servicemix/trunk/servicemix-common/project.xml (added)
+++ incubator/servicemix/trunk/servicemix-common/project.xml Wed Jan 11 21:12:33 2006
@@ -0,0 +1,117 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<!--
+
+    Copyright 2004 The Apache Software Foundation
+
+    Licensed under the Apache License, Version 2.0 (the "License");
+    you may not use this file except in compliance with the License.
+    You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+    
+-->
+
+<!DOCTYPE project>
+<project>
+    <pomVersion>3</pomVersion>
+    <extend>../project.xml</extend>
+
+    <name>ServiceMix :: Common</name>
+    <id>servicemix-common</id>
+    <shortDescription>Common components library</shortDescription>
+    <description>Common library for binding component and service engines</description>
+  
+    <package>org.servicemix.common</package>
+    <packageGroups>
+      <packageGroup>
+        <title>Common components library</title>
+        <packages>org.servicemix.common</packages>
+      </packageGroup>
+    </packageGroups>
+ 
+    <!-- ============ -->
+    <!-- Dependencies -->
+    <!-- ============ -->
+    <dependencies>
+    
+      <dependency>
+        <groupId>servicemix</groupId>
+        <artifactId>servicemix-jbi</artifactId>
+        <version>${pom.currentVersion}</version>
+        <properties>
+          <eclipse.dependency>true</eclipse.dependency>
+        </properties>
+      </dependency>
+      <dependency>
+        <groupId>geronimo-spec</groupId>
+        <artifactId>geronimo-spec-j2ee-connector</artifactId>
+        <version>${geronimo_spec_j2ee_connector_version}</version>
+      </dependency>
+      <dependency>
+        <groupId>geronimo-spec</groupId>
+        <artifactId>geronimo-spec-jta</artifactId>
+        <version>${geronimo_spec_jta_version}</version>
+      </dependency>
+      
+
+      <dependency>
+        <groupId>commons-logging</groupId>
+        <artifactId>commons-logging</artifactId>
+        <version>${commons_logging_version}</version>
+      </dependency>
+      <dependency>
+        <groupId>backport-util-concurrent</groupId>
+        <artifactId>backport-util-concurrent</artifactId>
+        <version>${backport_util_concurrent_version}</version>
+      </dependency>
+      <dependency>
+        <groupId>mx4j</groupId>
+        <artifactId>mx4j</artifactId>
+        <version>${mx4j_version}</version>
+      </dependency>
+      <dependency>
+        <groupId>servicemix</groupId>
+        <artifactId>jaxp</artifactId>
+        <version>${jaxp_version}</version>
+      </dependency>
+
+      <!-- WSDL deployment -->
+      <dependency>
+        <groupId>wsdl4j</groupId>
+        <artifactId>wsdl4j</artifactId>
+        <version>${wsdl4j_version}</version>
+      </dependency>
+
+      <!-- XBEAN deployment -->
+      <dependency>
+        <groupId>org.xbean</groupId>
+        <artifactId>xbean-spring</artifactId>
+        <version>${xbean_version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.xbean</groupId>
+        <artifactId>xbean-server</artifactId>
+        <version>${xbean_version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.xbean</groupId>
+        <artifactId>xbean-kernel</artifactId>
+        <version>${xbean_version}</version>
+      </dependency>
+      <dependency>
+        <groupId>springframework</groupId>
+        <artifactId>spring</artifactId>
+        <version>${spring_version}</version>
+      </dependency>
+
+
+    </dependencies>  
+
+</project>