You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by jb...@apache.org on 2010/11/16 14:13:45 UTC

svn commit: r1035629 - in /servicemix/components/bindings/servicemix-smpp/trunk: .gitignore pom.xml

Author: jbonofre
Date: Tue Nov 16 13:13:45 2010
New Revision: 1035629

URL: http://svn.apache.org/viewvc?rev=1035629&view=rev
Log:
Cleanup POM.

Added:
    servicemix/components/bindings/servicemix-smpp/trunk/.gitignore
Modified:
    servicemix/components/bindings/servicemix-smpp/trunk/pom.xml

Added: servicemix/components/bindings/servicemix-smpp/trunk/.gitignore
URL: http://svn.apache.org/viewvc/servicemix/components/bindings/servicemix-smpp/trunk/.gitignore?rev=1035629&view=auto
==============================================================================
--- servicemix/components/bindings/servicemix-smpp/trunk/.gitignore (added)
+++ servicemix/components/bindings/servicemix-smpp/trunk/.gitignore Tue Nov 16 13:13:45 2010
@@ -0,0 +1,4 @@
+target
+.project
+.classpath
+*.i??
\ No newline at end of file

Modified: servicemix/components/bindings/servicemix-smpp/trunk/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/bindings/servicemix-smpp/trunk/pom.xml?rev=1035629&r1=1035628&r2=1035629&view=diff
==============================================================================
--- servicemix/components/bindings/servicemix-smpp/trunk/pom.xml (original)
+++ servicemix/components/bindings/servicemix-smpp/trunk/pom.xml Tue Nov 16 13:13:45 2010
@@ -1,37 +1,40 @@
 <?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">
-<!--
+<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/xsd/maven-4.0.0.xsd">
+
+    <!--
+
+        Licensed to the Apache Software Foundation (ASF) under one or more
+        contributor license agreements.  See the NOTICE file distributed with
+        this work for additional information regarding copyright ownership.
+        The ASF licenses this file to You 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.
+    -->
 
-    Licensed to the Apache Software Foundation (ASF) under one or more
-    contributor license agreements.  See the NOTICE file distributed with
-    this work for additional information regarding copyright ownership.
-    The ASF licenses this file to You 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.
--->
     <modelVersion>4.0.0</modelVersion>
+
     <parent>
         <groupId>org.apache.servicemix</groupId>
         <artifactId>components-pom</artifactId>
         <version>6-SNAPSHOT</version>
-        <relativePath>../../components-pom/pom.xml</relativePath>      
+        <relativePath>../../components-pom/pom.xml</relativePath>
     </parent>
-    
+
     <groupId>org.apache.servicemix</groupId>
     <artifactId>servicemix-smpp</artifactId>
     <version>2010.02-SNAPSHOT</version>
     <packaging>jbi-component</packaging>
 
     <name>Apache ServiceMix :: Components :: SMPP Binding Component</name>
-    
+
     <scm>
         <connection>scm:svn:http://svn.apache.org/repos/asf/servicemix/components/bindings/servicemix-smpp/trunk</connection>
         <developerConnection>scm:svn:https://svn.apache.org/repos/asf/servicemix/components/bindings/servicemix-smpp/trunk</developerConnection>
@@ -39,7 +42,7 @@
     </scm>
 
     <properties>
-        <jsmpp-version>2.0</jsmpp-version>
+        <jsmpp.version>2.0</jsmpp.version>
 
         <servicemix.osgi.import>
             !org.apache.servicemix.smpp*,
@@ -67,9 +70,20 @@
 
     <dependencies>
         <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+        </dependency>        
+        <dependency>
+            <groupId>com.google.code</groupId>
+            <artifactId>jsmpp</artifactId>
+            <version>${jsmpp.version}</version>
+        </dependency>
+        <dependency>
             <groupId>org.apache.servicemix</groupId>
             <artifactId>servicemix-shared</artifactId>
         </dependency>
+
+        <!-- provided -->
         <dependency>
             <groupId>org.apache.servicemix.specs</groupId>
             <artifactId>org.apache.servicemix.specs.jbi-api-1.0</artifactId>
@@ -80,32 +94,17 @@
             <artifactId>geronimo-jta_1.1_spec</artifactId>
             <scope>provided</scope>
         </dependency>
+
+        <!-- test -->
         <dependency>
-            <groupId>com.google.code</groupId>
-            <artifactId>jsmpp</artifactId>
-            <version>${jsmpp-version}</version>
-        </dependency>
-        <dependency>
-            <groupId>org.slf4j</groupId>
-            <artifactId>slf4j-api</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.slf4j</groupId>
-            <artifactId>slf4j-log4j12</artifactId>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>log4j</groupId>
             <artifactId>log4j</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>commons-logging</groupId>
-            <artifactId>commons-logging</artifactId>
-        </dependency>
-
-        <!-- Testing Dependencies -->
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
+            <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.servicemix</groupId>
@@ -124,6 +123,16 @@
                 </exclusion>
             </exclusions>
         </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-log4j12</artifactId>
+            <scope>test</scope>
+        </dependency>        
     </dependencies>
 
     <build>