You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ak...@apache.org on 2008/07/23 20:10:20 UTC

svn commit: r679149 - in /directory/apacheds/branches/bigbang: ./ core-jndi/ core-jndi/src/ core-jndi/src/main/ core-jndi/src/main/java/ core-jndi/src/test/ core-jndi/src/test/java/ core-jndi/src/test/resources/

Author: akarasulu
Date: Wed Jul 23 11:10:20 2008
New Revision: 679149

URL: http://svn.apache.org/viewvc?rev=679149&view=rev
Log:
adding core-jndi module where we will be extracting the decoupled JNDI provider to from the core

Added:
    directory/apacheds/branches/bigbang/core-jndi/pom.xml   (with props)
    directory/apacheds/branches/bigbang/core-jndi/src/
    directory/apacheds/branches/bigbang/core-jndi/src/main/
    directory/apacheds/branches/bigbang/core-jndi/src/main/java/
    directory/apacheds/branches/bigbang/core-jndi/src/test/
    directory/apacheds/branches/bigbang/core-jndi/src/test/java/
    directory/apacheds/branches/bigbang/core-jndi/src/test/resources/
    directory/apacheds/branches/bigbang/core-jndi/src/test/resources/log4j.properties   (with props)
Modified:
    directory/apacheds/branches/bigbang/pom.xml

Added: directory/apacheds/branches/bigbang/core-jndi/pom.xml
URL: http://svn.apache.org/viewvc/directory/apacheds/branches/bigbang/core-jndi/pom.xml?rev=679149&view=auto
==============================================================================
--- directory/apacheds/branches/bigbang/core-jndi/pom.xml (added)
+++ directory/apacheds/branches/bigbang/core-jndi/pom.xml Wed Jul 23 11:10:20 2008
@@ -0,0 +1,95 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+  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/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.directory.server</groupId>
+    <artifactId>apacheds-parent</artifactId>
+    <version>1.5.4-SNAPSHOT</version>
+  </parent>
+  <artifactId>apacheds-core</artifactId>
+  <name>ApacheDS Core JNDI</name>
+  <packaging>jar</packaging>
+
+  <description>
+     Contains a JNDI provider implementation which wraps the core so existing 
+     applications based on JNDI can use the server embedded transparently. 
+     Remote and local runtime operations will appear and feel exactly the same
+     with a performance boost when local.  All operations via this JNDI provider
+     bypass the LDAP stack to perform ooerations directly on the ApacheDS core.
+  </description>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-io</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.directory.server</groupId>
+      <artifactId>apacheds-core</artifactId>
+      <version>${pom.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration> 
+          <systemProperties>
+            <property>
+              <name>workingDirectory</name>
+              <value>${basedir}/target/server-work</value>
+            </property>
+          </systemProperties>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-source-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>attach-sources</id>
+            <phase>verify</phase>
+            <goals>
+              <goal>jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+
+    <resources>
+      <resource>
+        <directory>src/main/resources</directory>
+        <filtering>true</filtering>
+        <excludes>
+          <exclude>**/*.gif</exclude>
+        </excludes>
+      </resource>
+    </resources>
+  </build>
+</project>
+

Propchange: directory/apacheds/branches/bigbang/core-jndi/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: directory/apacheds/branches/bigbang/core-jndi/src/test/resources/log4j.properties
URL: http://svn.apache.org/viewvc/directory/apacheds/branches/bigbang/core-jndi/src/test/resources/log4j.properties?rev=679149&view=auto
==============================================================================
--- directory/apacheds/branches/bigbang/core-jndi/src/test/resources/log4j.properties (added)
+++ directory/apacheds/branches/bigbang/core-jndi/src/test/resources/log4j.properties Wed Jul 23 11:10:20 2008
@@ -0,0 +1,22 @@
+#############################################################################
+#    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.
+#############################################################################
+log4j.rootCategory=ERROR, stdout
+
+log4j.appender.stdout=org.apache.log4j.ConsoleAppender
+log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
+log4j.appender.stdout.layout.ConversionPattern=[%d{HH:mm:ss}] %p [%c] - %m%n
+

Propchange: directory/apacheds/branches/bigbang/core-jndi/src/test/resources/log4j.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: directory/apacheds/branches/bigbang/pom.xml
URL: http://svn.apache.org/viewvc/directory/apacheds/branches/bigbang/pom.xml?rev=679149&r1=679148&r2=679149&view=diff
==============================================================================
--- directory/apacheds/branches/bigbang/pom.xml (original)
+++ directory/apacheds/branches/bigbang/pom.xml Wed Jul 23 11:10:20 2008
@@ -345,6 +345,7 @@
     <module>xdbm-search</module>
     <module>xdbm-tools</module>
     <module>core</module>
+    <module>core-jndi</module>
     <module>core-constants</module>
     <module>core-shared</module>
     <module>core-plugin</module>