Author: jbonofre
Date: Mon Nov 15 09:09:53 2010
New Revision: 1035191
URL: http://svn.apache.org/viewvc?rev=1035191&view=rev
Log:
Cleanup POM.
Added:
servicemix/components/bindings/servicemix-ldap/trunk/.gitignore
Removed:
servicemix/components/bindings/servicemix-ldap/trunk/src/main/test/org/apache/servicemix/ldap/marshaler/DefaultLdapMarshalerTest.java
Modified:
servicemix/components/bindings/servicemix-ldap/trunk/pom.xml
Added: servicemix/components/bindings/servicemix-ldap/trunk/.gitignore
URL:
http://svn.apache.org/viewvc/servicemix/components/bindings/servicemix-ldap/trunk/.gitignore?rev=1035191&view=auto
==============================================================================
--- servicemix/components/bindings/servicemix-ldap/trunk/.gitignore (added)
+++ servicemix/components/bindings/servicemix-ldap/trunk/.gitignore Mon Nov 15
09:09:53 2010
@@ -0,0 +1,4 @@
+*.i??
+target
+.project
+.classpath
\ No newline at end of file
Modified: servicemix/components/bindings/servicemix-ldap/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/servicemix/components/bindings/servicemix-ldap/trunk/pom.xml?rev=1035191&r1=1035190&r2=1035191&view=diff
==============================================================================
--- servicemix/components/bindings/servicemix-ldap/trunk/pom.xml (original)
+++ servicemix/components/bindings/servicemix-ldap/trunk/pom.xml Mon Nov 15
09:09:53 2010
@@ -1,45 +1,45 @@
<?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/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.
--->
-
+<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.
+ -->
+
<modelVersion>4.0.0</modelVersion>
-
+
<parent>
<groupId>org.apache.servicemix</groupId>
<artifactId>components-pom</artifactId>
<version>6-SNAPSHOT</version>
</parent>
-
+
<groupId>org.apache.servicemix</groupId>
<artifactId>servicemix-ldap</artifactId>
<version>2010.02-SNAPSHOT</version>
<packaging>jbi-component</packaging>
-
+
<name>Apache ServiceMix :: Components :: LDAP Binding Component</name>
-
+
<scm>
<connection>scm:svn:http://svn.apache.org/repos/asf/servicemix/components/bindings/servicemix-ldap/trunk</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/servicemix/components/bindings/servicemix-ldap/trunk</developerConnection>
<url>http://svn.apache.org/viewcvs.cgi/servicemix/components/bindings/servicemix-ldap/trunk</url>
</scm>
-
+
<properties>
<servicemix.osgi.import>
!org.apache.servicemix.ldap*,
@@ -66,29 +66,35 @@
org.springframework.context,
</servicemix.osgi.bundles>
</properties>
-
+
<dependencies>
<dependency>
<groupId>org.apache.servicemix</groupId>
<artifactId>servicemix-shared</artifactId>
</dependency>
- <dependency>
- <groupId>org.apache.servicemix.specs</groupId>
- <artifactId>org.apache.servicemix.specs.jbi-api-1.0</artifactId>
- <scope>provided</scope>
- </dependency>
+
+ <!-- provided -->
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-jta_1.1_spec</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.servicemix.specs</groupId>
+ <artifactId>org.apache.servicemix.specs.jbi-api-1.0</artifactId>
+ <scope>provided</scope>
</dependency>
- <!-- for testing purposes -->
+
+ <!-- testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
+ <scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.servicemix</groupId>
@@ -102,7 +108,7 @@
</exclusions>
</dependency>
</dependencies>
-
+
<build>
<plugins>
<plugin>
@@ -130,5 +136,5 @@
</plugin>
</plugins>
</build>
-
+
</project>