You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by rj...@apache.org on 2009/06/09 13:30:11 UTC

svn commit: r782959 - in /directory/sandbox/slp: ./ pom.xml

Author: rjan
Date: Tue Jun  9 11:30:10 2009
New Revision: 782959

URL: http://svn.apache.org/viewvc?rev=782959&view=rev
Log:
started to merge existing codec with the new implementation derived from jSLP.

Modified:
    directory/sandbox/slp/   (props changed)
    directory/sandbox/slp/pom.xml

Propchange: directory/sandbox/slp/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Tue Jun  9 11:30:10 2009
@@ -10,3 +10,5 @@
 *.log
 target
 nbproject
+
+.settings

Modified: directory/sandbox/slp/pom.xml
URL: http://svn.apache.org/viewvc/directory/sandbox/slp/pom.xml?rev=782959&r1=782958&r2=782959&view=diff
==============================================================================
--- directory/sandbox/slp/pom.xml (original)
+++ directory/sandbox/slp/pom.xml Tue Jun  9 11:30:10 2009
@@ -1,62 +1,76 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
-<!--
-    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.
--->
-<!-- $Rev:  $ $Date:  $ -->
-<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">
-  <modelVersion>4.0.0</modelVersion>
-  <parent>
-    <groupId>org.apache.directory.server</groupId>
-    <artifactId>apacheds-parent</artifactId>
-    <version>1.5.2-SNAPSHOT</version>
-  </parent>
-  <artifactId>apacheds-protocol-slp</artifactId>
-  <name>ApacheDS Protocol SLP</name>
-
-  <description>
-    The SLP Protocol Provider for ApacheDS
-  </description>
-
-  <packaging>jar</packaging> 
-  <dependencies>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.mina</groupId>
-      <artifactId>mina-core</artifactId>
-      <version>1.0.8</version>
-    </dependency>
-    <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-api</artifactId>
-      <version>1.4.3</version>
-    </dependency>
-    <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-simple</artifactId>
-      <version>1.4.3</version>
-    </dependency>
-    <dependency>
-      <groupId>backport-util-concurrent</groupId>
-      <artifactId>backport-util-concurrent</artifactId>
-      <version>3.0</version>
-    </dependency>
-  </dependencies>
+	<!--
+		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.
+	-->
+	<!-- $Rev:  $ $Date:  $ -->
+<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">
+	<modelVersion>4.0.0</modelVersion>
+
+	<parent>
+		<groupId>org.apache.directory.project
+		</groupId>
+		<artifactId>project</artifactId>
+		<version>15</version>
+	</parent>
+
+	<groupId>org.apache.directory.slp
+	</groupId>
+	<artifactId>slp</artifactId>
+	<name>SLP</name>
+	<version>0.1.0-SNAPSHOT</version>
+
+	<packaging>jar</packaging>
+
+	<dependencies>
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+			<version>3.8.1</version>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.mina</groupId>
+			<artifactId>mina-core</artifactId>
+			<version>1.0.8</version>
+		</dependency>
+		<dependency>
+			<groupId>org.slf4j</groupId>
+			<artifactId>slf4j-api</artifactId>
+			<version>1.4.3</version>
+		</dependency>
+		<dependency>
+			<groupId>org.slf4j</groupId>
+			<artifactId>slf4j-simple</artifactId>
+			<version>1.4.3</version>
+		</dependency>
+		<dependency>
+			<groupId>backport-util-concurrent</groupId>
+			<artifactId>backport-util-concurrent
+			</artifactId>
+			<version>3.0</version>
+		</dependency>
+	</dependencies>
+
+	<repositories>
+		<repository>
+			<id>iks-repository</id>
+			<name>ETH Zurich IKS Repository</name>
+			<url>http://www.flowsgi.inf.ethz.ch/repository/maven2/
+			</url>
+		</repository>
+	</repositories>
+
 </project>