You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by ch...@apache.org on 2008/06/20 16:26:00 UTC

svn commit: r669910 - /servicemix/components/bindings/servicemix-mail/trunk/pom.xml

Author: chirino
Date: Fri Jun 20 07:26:00 2008
New Revision: 669910

URL: http://svn.apache.org/viewvc?rev=669910&view=rev
Log:
Updating pom to work with new build strucutre

Modified:
    servicemix/components/bindings/servicemix-mail/trunk/pom.xml

Modified: servicemix/components/bindings/servicemix-mail/trunk/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/bindings/servicemix-mail/trunk/pom.xml?rev=669910&r1=669909&r2=669910&view=diff
==============================================================================
--- servicemix/components/bindings/servicemix-mail/trunk/pom.xml (original)
+++ servicemix/components/bindings/servicemix-mail/trunk/pom.xml Fri Jun 20 07:26:00 2008
@@ -1,6 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-
 <!--
 
     Licensed to the Apache Software Foundation (ASF) under one or more
@@ -18,26 +17,38 @@
     See the License for the specific language governing permissions and
     limitations under the License.
 -->
-
+  <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.apache.servicemix</groupId>
-    <artifactId>bindingcomponents</artifactId>
-    <version>3.3-SNAPSHOT</version>
+    <artifactId>components-pom</artifactId>
+    <version>1.0-SNAPSHOT</version>
   </parent>
 
-  <modelVersion>4.0.0</modelVersion>
-
   <groupId>org.apache.servicemix</groupId>
   <artifactId>servicemix-mail</artifactId>
+  <version>4.0-SNAPSHOT</version>
   <packaging>jbi-component</packaging>
+  
   <name>ServiceMix :: Mail</name>
   <description>A Mail component</description>
-
+  
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/servicemix/components/bindings/servicemix-mail/trunk</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/servicemix/components/bindings/servicemix-mail/trunk</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/servicemix/components/bindings/servicemix-mail/trunk</url>
+  </scm>
+
+  <properties>
+    <previous.releases>3.1.2,3.2,3.2.1</previous.releases>
+    <servicemix-version>3.2.1</servicemix-version>
+    <servicemix-shared-version>4.0-SNAPSHOT</servicemix-shared-version>
+  </properties>
+  
   <dependencies>
     <dependency>
       <groupId>org.apache.servicemix</groupId>
       <artifactId>servicemix-shared</artifactId>
-      <version>${servicemix-version}</version>
+      <version>${servicemix-shared-version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.servicemix</groupId>
@@ -53,7 +64,6 @@
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
-      <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.easymock</groupId>
@@ -62,7 +72,7 @@
       <scope>test</scope>
     </dependency>
   </dependencies>
-
+  
   <build>
     <resources>
       <resource>
@@ -104,10 +114,9 @@
       <plugin>
         <groupId>org.apache.servicemix.tooling</groupId>
         <artifactId>jbi-maven-plugin</artifactId>
-        <version>${servicemix-version}</version>
         <extensions>true</extensions>
         <configuration>
-          <type>binding-component</type>       
+          <type>binding-component</type>
           <component>org.apache.servicemix.mail.MailComponent</component>
           <bootstrap>org.apache.servicemix.mail.MailBootstrap</bootstrap>
         </configuration>
@@ -115,7 +124,6 @@
       <plugin>
         <groupId>org.apache.xbean</groupId>
         <artifactId>maven-xbean-plugin</artifactId>
-        <version>${xbean-version}</version>
         <executions>
           <execution>
             <goals>
@@ -132,13 +140,8 @@
         <artifactId>maven-surefire-plugin</artifactId>
         <configuration>
           <forkMode>always</forkMode>
-          <workingDirectory>${basedir}</workingDirectory>
-          <includes>
-            <include>**/*Test.*</include>
-          </includes>
         </configuration>
       </plugin>
     </plugins>
   </build>
-
 </project>