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 2004/01/27 05:36:15 UTC

svn commit: rev 6315 - incubator/directory/snickers/trunk

Author: akarasulu
Date: Mon Jan 26 20:36:15 2004
New Revision: 6315

Added:
   incubator/directory/snickers/trunk/project.xml
Log:
Forgot to check this in.


Added: incubator/directory/snickers/trunk/project.xml
==============================================================================
--- (empty file)
+++ incubator/directory/snickers/trunk/project.xml	Mon Jan 26 20:36:15 2004
@@ -0,0 +1,215 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<project>
+    <groupId>directory</groupId>
+    <id>snickers</id>
+    <name>Snickers ASN.1 Tools</name>
+    <package>org.apache.snickers</package>
+
+    <inceptionYear>2003</inceptionYear>
+    <url>http://directory.apache.org/snickers</url>
+    <issueTrackingUrl>
+      http://nagoya.apache.org/scarab/servlet/scarab
+    </issueTrackingUrl>
+    <siteAddress>directory.apache.org</siteAddress>
+    <siteDirectory>/home/akarasulu/public_html</siteDirectory>
+    <distributionDirectory>
+      /home/akarasulu/public_html/dist
+    </distributionDirectory>
+
+    <repository>
+      <connection>
+          scm:svn:http://cvs.apache.org/repos/asf/incubator/directory/snickers/trunk
+      </connection>
+
+      <url>
+        http://cvs.apache.org/viewcvs.cgi/incubator/directory/snickers/trunk?root=Apache-SVN
+      </url>
+      
+      <developerConnection>
+        http://cvs.apache.org/repos/asf/incubator/directory/snickers/trunk
+      </developerConnection>
+    </repository>
+  
+    <shortDescription>Snickers ASN.1 Tools</shortDescription>
+      
+    <description>
+      The snickers subproject attempts to isolate the ASN.1 tools used to
+      build Basic Encoding Rule (BER) codecs for any ASN.1 based network
+      protocol.  The LDAP and X.500 aspects of the directory project impose
+      the need for ASN.1 tools and BER codecs.  Rather than implement highly
+      specific and britle code for these needs we decided to separate out
+      the APIs and implementations used for dealing with BER codecs for any
+      ASN.1 defined protocol.
+    </description>
+
+    <mailingLists>
+      <mailingList>
+        <name>Apache Directory Developement - use [snickers] prefix</name>
+          <subscribe>
+            directory-dev-subscribe@incubator.apache.org
+          </subscribe>
+          <unsubscribe>
+            directory-dev-unsubscribe@incubator.apache.org
+          </unsubscribe>
+          <archive>
+            http://nagoya.apache.org/eyebrowse/SummarizeList?listId=181
+          </archive>
+        </mailingList>
+    </mailingLists>
+    
+    <developers>
+      <developer>
+        <name>Alex Karasulu</name>
+        <id>akarasulu</id>
+        <email>akarasulu at apache.org</email>
+        <roles>
+          <role>PM</role>
+          <role>Chair</role>
+          <role>Founder</role>
+          <role>Developer</role>
+          <role>Architect</role>
+          <role>Lead Developer</role>
+        </roles>
+      </developer>
+      <developer>
+        <name>Robb Penoyer</name>
+        <id>rpenoyer</id>
+        <email>rpenoyer at apache.org</email>
+        <roles>
+          <role>Developer</role>
+        </roles>
+      </developer>
+      <developer>
+        <name>Jeff Machols</name>
+        <id>jmachols</id>
+        <email>jmachols at apache.org</email>
+        <roles>
+          <role>Developer</role>
+          <role>Infrastructure Support</role>
+        </roles>
+      </developer>
+      <developer>
+        <name>Wes McKean</name>
+        <id>wesmckean</id>
+        <email>wesmckean at apache.org</email>
+        <roles>
+          <role>Developer</role>
+        </roles>
+      </developer>
+      <developer>
+        <name>Noel Bergman</name>
+        <id>noeljb</id>
+        <email>noeljb at apache.org</email>
+        <roles>
+          <role>Mentor</role>
+          <role>Advisor</role>
+          <role>Sponsor</role>
+        </roles>
+      </developer>
+      <developer>
+        <name>Stephen McConnell</name>
+        <id>mcconnell</id>
+        <email>mcconnell at apache.org</email>
+        <roles>
+          <role>Mentor</role>
+          <role>Sponsor</role>
+          <role>Advisor</role>
+        </roles>
+      </developer>
+    </developers>
+
+    <licenses>
+      <license>
+        <name>Apache 1.1 License</name>
+        <url>
+http://cvs.apache.org/viewcvs.cgi/incubator/directory/LICENSE.txt?rev=1369&amp;root=Apache-SVN&amp;view=markup
+        </url>
+        <distribution>repo</distribution>
+      </license>
+    </licenses>
+
+    <dependencies>
+      <dependency>
+        <groupId>junit</groupId>
+        <artifactId>junit</artifactId>
+        <version>3.8.1</version>
+        <url>http://junit.org</url>
+      </dependency>
+    </dependencies>        
+  
+    <build>
+      <nagEmailAddress>directory-dev@incubator.apache.org</nagEmailAddress>
+      <sourceDirectory>${basedir}/src/java</sourceDirectory>
+      <unitTestSourceDirectory>${basedir}/src/test</unitTestSourceDirectory>
+      <integrationUnitTestSourceDirectory/>
+      <aspectSourceDirectory/>
+
+      <unitTest>
+        <includes>
+          <include>**/*Test*</include>
+          <include>**/*TestCase*</include>
+        </includes>
+              
+        <excludes>
+            <exclude></exclude>
+        </excludes>
+        
+        <resources>
+          <resource>
+            <directory>${basedir}/src/test</directory>
+            <includes> 
+              <include>**/*.dtd</include>
+              <include>**/*.ldif</include>
+              <include>**/*.properties</include>
+              <include>**/*.x*</include>
+              <include>**/*.mf</include>
+              <include>**/*.jar</include>
+            </includes>
+          </resource>
+
+          <resource>
+            <directory>${basedir}/src/test</directory>
+            <includes> 
+              <include>**/*.dtd</include>
+              <include>**/*.ldif</include>
+              <include>**/*.properties</include>
+              <include>**/*.x*</include>
+              <include>**/*.mf</include>
+              <include>**/*.jar</include>
+            </includes>
+          </resource>
+        </resources>
+      </unitTest>
+    
+      <resources>
+        <resource>
+          <directory>${basedir}/src/java</directory>
+          <includes>
+            <include>**/*.dtd</include>
+            <include>**/*.properties</include>
+            <include>**/*.x*</include>
+          </includes>
+        </resource>
+              
+        <resource>
+          <directory>${basedir}/conf</directory>
+          <targetPath>BLOCK-INF</targetPath>
+          <includes>
+            <include>block.xml</include>
+          </includes>
+        </resource>
+      </resources>
+      <jars></jars>
+    </build>
+    
+    <reports>
+    	<report>maven-jxr-plugin</report>
+    	<report>maven-license-plugin</report>
+        <!-- report>maven-changelog-plugin</report -->
+        <report>maven-javadoc-plugin</report>
+    	<report>maven-tasklist-plugin</report>
+    </reports>
+</project>
+
+