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 2010/12/15 01:25:05 UTC

svn commit: r1049361 - in /directory/shared/branches/alex_refactoring: ./ asn1-api/ asn1-api/src/ asn1-api/src/main/ asn1-api/src/main/java/ asn1-api/src/main/resources/ asn1-api/src/test/ asn1-api/src/test/java/ asn1-api/src/test/resources/ asn1-ber/ ...

Author: akarasulu
Date: Wed Dec 15 00:25:04 2010
New Revision: 1049361

URL: http://svn.apache.org/viewvc?rev=1049361&view=rev
Log:
 o Continuing to drop dependencies in ASN.1 layer
 o About to put some utility functionality causing dependency issues 
   into a shared-util area.
 o Added asn1-api and asn1-ber modules to break appart implementation
   from the API

Added:
    directory/shared/branches/alex_refactoring/asn1-api/   (with props)
    directory/shared/branches/alex_refactoring/asn1-api/pom.xml
    directory/shared/branches/alex_refactoring/asn1-api/src/
    directory/shared/branches/alex_refactoring/asn1-api/src/main/
    directory/shared/branches/alex_refactoring/asn1-api/src/main/java/
    directory/shared/branches/alex_refactoring/asn1-api/src/main/resources/
    directory/shared/branches/alex_refactoring/asn1-api/src/test/
    directory/shared/branches/alex_refactoring/asn1-api/src/test/java/
    directory/shared/branches/alex_refactoring/asn1-api/src/test/resources/
    directory/shared/branches/alex_refactoring/asn1-ber/   (with props)
    directory/shared/branches/alex_refactoring/asn1-ber/pom.xml
    directory/shared/branches/alex_refactoring/asn1-ber/src/
    directory/shared/branches/alex_refactoring/asn1-ber/src/main/
    directory/shared/branches/alex_refactoring/asn1-ber/src/main/java/
    directory/shared/branches/alex_refactoring/asn1-ber/src/main/resources/
    directory/shared/branches/alex_refactoring/asn1-ber/src/test/
    directory/shared/branches/alex_refactoring/asn1-ber/src/test/java/
    directory/shared/branches/alex_refactoring/asn1-ber/src/test/resources/
    directory/shared/branches/alex_refactoring/util/   (with props)
    directory/shared/branches/alex_refactoring/util/pom.xml
    directory/shared/branches/alex_refactoring/util/src/
    directory/shared/branches/alex_refactoring/util/src/main/
    directory/shared/branches/alex_refactoring/util/src/main/java/
    directory/shared/branches/alex_refactoring/util/src/main/resources/
    directory/shared/branches/alex_refactoring/util/src/test/
    directory/shared/branches/alex_refactoring/util/src/test/java/
    directory/shared/branches/alex_refactoring/util/src/test/resources/
Removed:
    directory/shared/branches/alex_refactoring/file-review.txt

Propchange: directory/shared/branches/alex_refactoring/asn1-api/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Wed Dec 15 00:25:04 2010
@@ -0,0 +1,6 @@
+.settings
+*.iml
+target
+.project
+.classpath
+

Added: directory/shared/branches/alex_refactoring/asn1-api/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/branches/alex_refactoring/asn1-api/pom.xml?rev=1049361&view=auto
==============================================================================
--- directory/shared/branches/alex_refactoring/asn1-api/pom.xml (added)
+++ directory/shared/branches/alex_refactoring/asn1-api/pom.xml Wed Dec 15 00:25:04 2010
@@ -0,0 +1,50 @@
+<?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.shared</groupId>
+    <artifactId>shared-parent</artifactId>
+    <version>0.9.20-SNAPSHOT</version>
+  </parent>
+  
+  <artifactId>shared-asn1-api</artifactId>
+  <name>Apache Directory Shared ASN.1 API</name>
+
+  <description>ASN.1 API</description>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.directory.junit</groupId>
+      <artifactId>junit-addons</artifactId>
+      <scope>test</scope>
+    </dependency>
+    
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>shared-i18n</artifactId>
+    </dependency> 
+  </dependencies>
+
+  <build>
+    <plugins>
+    </plugins>
+  </build>
+</project>

Propchange: directory/shared/branches/alex_refactoring/asn1-ber/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Wed Dec 15 00:25:04 2010
@@ -0,0 +1,6 @@
+.settings
+*.iml
+target
+.project
+.classpath
+

Added: directory/shared/branches/alex_refactoring/asn1-ber/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/branches/alex_refactoring/asn1-ber/pom.xml?rev=1049361&view=auto
==============================================================================
--- directory/shared/branches/alex_refactoring/asn1-ber/pom.xml (added)
+++ directory/shared/branches/alex_refactoring/asn1-ber/pom.xml Wed Dec 15 00:25:04 2010
@@ -0,0 +1,50 @@
+<?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.shared</groupId>
+    <artifactId>shared-parent</artifactId>
+    <version>0.9.20-SNAPSHOT</version>
+  </parent>
+  
+  <artifactId>shared-asn1-ber</artifactId>
+  <name>Apache Directory Shared ASN.1 BER</name>
+
+  <description>A BER Codec Implementation for ASN.1</description>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.directory.junit</groupId>
+      <artifactId>junit-addons</artifactId>
+      <scope>test</scope>
+    </dependency>
+    
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>shared-i18n</artifactId>
+    </dependency> 
+  </dependencies>
+
+  <build>
+    <plugins>
+    </plugins>
+  </build>
+</project>

Propchange: directory/shared/branches/alex_refactoring/util/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Wed Dec 15 00:25:04 2010
@@ -0,0 +1,6 @@
+.settings
+*.iml
+target
+.project
+.classpath
+

Added: directory/shared/branches/alex_refactoring/util/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/branches/alex_refactoring/util/pom.xml?rev=1049361&view=auto
==============================================================================
--- directory/shared/branches/alex_refactoring/util/pom.xml (added)
+++ directory/shared/branches/alex_refactoring/util/pom.xml Wed Dec 15 00:25:04 2010
@@ -0,0 +1,50 @@
+<?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.shared</groupId>
+    <artifactId>shared-parent</artifactId>
+    <version>0.9.20-SNAPSHOT</version>
+  </parent>
+  
+  <artifactId>shared-util</artifactId>
+  <name>Apache Directory Shared Utilities</name>
+
+  <description>Utilities shared across this top level project</description>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.directory.junit</groupId>
+      <artifactId>junit-addons</artifactId>
+      <scope>test</scope>
+    </dependency>
+    
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>shared-i18n</artifactId>
+    </dependency> 
+  </dependencies>
+
+  <build>
+    <plugins>
+    </plugins>
+  </build>
+</project>