You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ad...@apache.org on 2004/06/01 05:16:16 UTC

svn commit: rev 20725 - incubator/directory/snickers/trunk/stub-compiler

Author: adc
Date: Mon May 31 20:16:15 2004
New Revision: 20725

Added:
   incubator/directory/snickers/trunk/stub-compiler/project.xml
Log:
Checkin to save WIP.

Added: incubator/directory/snickers/trunk/stub-compiler/project.xml
==============================================================================
--- (empty file)
+++ incubator/directory/snickers/trunk/stub-compiler/project.xml	Mon May 31 20:16:15 2004
@@ -0,0 +1,102 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+ *
+ *  Copyright 2004 The Apache Software Foundation
+ *
+ *  Licensed 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>
+
+  <extend>${basedir}/../project.xml</extend>
+  <groupId>incubator-directory</groupId>
+  <id>stub-compiler</id>
+  <version>SNAPSHOT</version>
+  
+  <name>ASN1 Stub Compiler</name>
+  <package>org.apache.snickers.asn1</package>
+  <currentVersion>SNAPSHOT</currentVersion>
+  <inceptionYear>2004</inceptionYear>
+      
+  <shortDescription>ASN1 Stub Compiler</shortDescription>
+
+  <description>
+    An ASN1 stub compiler that generates POJOs and their encoders/decoders
+    that work within the snickers framework.
+  </description>
+
+
+    <!-- jar files the project is dependent on -->
+    <dependencies>
+        <dependency>
+            <groupId>antlr</groupId>
+            <artifactId>antlr</artifactId>
+            <version>2.7.2</version>
+        </dependency>
+
+        <dependency>
+            <groupId>commons-lang</groupId>
+            <artifactId>commons-lang</artifactId>
+            <version>2.0</version>
+        </dependency>
+
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+            <version>1.0.3</version>
+            <url>http://jakarta.apache.org/commons/logging/</url>
+        </dependency>
+
+        <dependency>
+            <groupId>commons-collections</groupId>
+            <artifactId>commons-collections</artifactId>
+            <version>SNAPSHOT</version>
+            <url>http://jakarta.apache.org/commons/collections</url>
+        </dependency>
+
+        <dependency>
+            <groupId>avalon-logkit</groupId>
+            <artifactId>avalon-logkit</artifactId>
+            <version>2.0.0</version>
+        </dependency>
+
+        <dependency>
+            <id>velocity</id>
+            <version>dep-1.4-rc1</version>
+            <url>http://jakarta.apache.org/velocity/</url>
+            <properties>
+                <war.bundle>true</war.bundle>
+            </properties>
+        </dependency>
+    </dependencies>
+
+    <!-- build information for the project -->
+    <build>
+        <sourceDirectory>src/java</sourceDirectory>
+        <unitTestSourceDirectory>src/test</unitTestSourceDirectory>
+        <unitTest>
+            <includes>
+                <include>**/*Test.java</include>
+            </includes>
+        </unitTest>
+        <resources>
+            <resource>
+                <directory>src/vm</directory>
+                    <includes>
+                    <include>**/*.vm</include>
+                </includes>
+            </resource>
+        </resources>
+    </build>
+
+</project>
+