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 2011/01/20 15:53:19 UTC

svn commit: r1061326 - in /directory/shared/trunk/asn1-ber: ./ src/ src/main/ src/main/java/ src/main/java/org/ src/main/java/org/apache/ src/main/java/org/apache/directory/ src/main/java/org/apache/directory/shared/ src/main/java/org/apache/directory/...

Author: akarasulu
Date: Thu Jan 20 14:53:19 2011
New Revision: 1061326

URL: http://svn.apache.org/viewvc?rev=1061326&view=rev
Log:
adding asn1-ber module shell

Added:
    directory/shared/trunk/asn1-ber/
    directory/shared/trunk/asn1-ber/pom.xml
    directory/shared/trunk/asn1-ber/src/
    directory/shared/trunk/asn1-ber/src/main/
    directory/shared/trunk/asn1-ber/src/main/java/
    directory/shared/trunk/asn1-ber/src/main/java/org/
    directory/shared/trunk/asn1-ber/src/main/java/org/apache/
    directory/shared/trunk/asn1-ber/src/main/java/org/apache/directory/
    directory/shared/trunk/asn1-ber/src/main/java/org/apache/directory/shared/
    directory/shared/trunk/asn1-ber/src/main/java/org/apache/directory/shared/asn1/
    directory/shared/trunk/asn1-ber/src/main/java/org/apache/directory/shared/asn1/actions/
    directory/shared/trunk/asn1-ber/src/main/java/org/apache/directory/shared/asn1/ber/
    directory/shared/trunk/asn1-ber/src/main/java/org/apache/directory/shared/asn1/ber/grammar/
    directory/shared/trunk/asn1-ber/src/main/java/org/apache/directory/shared/asn1/ber/tlv/
    directory/shared/trunk/asn1-ber/src/main/resources/
    directory/shared/trunk/asn1-ber/src/test/
    directory/shared/trunk/asn1-ber/src/test/java/
    directory/shared/trunk/asn1-ber/src/test/java/org/
    directory/shared/trunk/asn1-ber/src/test/java/org/apache/
    directory/shared/trunk/asn1-ber/src/test/java/org/apache/directory/
    directory/shared/trunk/asn1-ber/src/test/java/org/apache/directory/shared/
    directory/shared/trunk/asn1-ber/src/test/java/org/apache/directory/shared/asn1/
    directory/shared/trunk/asn1-ber/src/test/java/org/apache/directory/shared/asn1/ber/
    directory/shared/trunk/asn1-ber/src/test/java/org/apache/directory/shared/asn1/ber/tlv/
    directory/shared/trunk/asn1-ber/src/test/resources/

Added: directory/shared/trunk/asn1-ber/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/trunk/asn1-ber/pom.xml?rev=1061326&view=auto
==============================================================================
--- directory/shared/trunk/asn1-ber/pom.xml (added)
+++ directory/shared/trunk/asn1-ber/pom.xml Thu Jan 20 14:53:19 2011
@@ -0,0 +1,60 @@
+<?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> 
+    
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>shared-asn1-api</artifactId>
+    </dependency> 
+    
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>shared-util</artifactId>
+    </dependency> 
+  </dependencies>
+
+  <build>
+    <plugins>
+    </plugins>
+  </build>
+</project>