Index: unk/.cvsignore
===================================================================
--- /trunk/.cvsignore	(revision 6)
+++ 	(revision )
@@ -1,4 +1,0 @@
-target
-.classpath
-.project
-velocity.log
Index: unk/project.xml
===================================================================
--- /trunk/project.xml	(revision 6)
+++ 	(revision )
@@ -1,79 +1,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- 
-/*
- * Copyright 2001-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>
-  <pomVersion>3</pomVersion>
-  <id>jpathlib</id>
-  <name>Java Path Library</name>
-  <!-- The version of the project under development, e.g.
-       1.1, 1.2, 2.0-SNAPSHOT -->
-  <currentVersion>1.0</currentVersion>
-  <!-- details about the organization that 'owns' the project -->
-  <organization>
-    <name>David Owen</name>
-    <url>http://www.fugue88.ws/</url>
-  </organization>
-  <inceptionYear>2005</inceptionYear>
-  <package>ws.fugue88.jpath</package>
-  <description><![CDATA[This library allows access to graphs of Java objects by path-like strings.  As a short example, suppose you have the following:</p>
-<source>
-class A {
-	String s;
-}
-class B {
-	A x;
-}
-</source>
-<p>Then, given an instance of class B, the path "/x/s" would provide access to the string <var>s</var>.</p>
-
-<p>Early-nulls (if <var>x</var> were <code>null</code>) are also supported (a la Expression Language), but so is automatic graph construction.  In such a case, a new instances of A would have been assigned to <var>x</var> to access the (still <code>null</code>) string <var>s</var>.]]></description>
-  <!-- the project home page -->
-  <url>http://maven.apache.org/reference/plugins/examples/</url>
-  <siteAddress>jakarta.apache.org</siteAddress>
-  <siteDirectory>/www/maven.apache.org/reference/plugins/examples/</siteDirectory>
-  <distributionDirectory>/www/maven.apache.org/builds/</distributionDirectory>
-  <!-- the version control repository and http url for online access
-       the connection element has the form:
-       scm:<system>:<system specific connection string> -->
-  <repository>
-    <connection>scm:cvs:ext:devel.home:/srv/cvs:jpathlib</connection>
-    <!-- url>http://cvs.apache.org/viewcvs/maven-plugins/examples/</url -->
-  </repository>
-  <developers>
-    <developer>
-      <id>dsowen</id>
-      <name>David Owen</name>
-    </developer>
-  </developers>
-  <build>
-    <sourceDirectory>src</sourceDirectory>
-    <unitTestSourceDirectory>testsrc</unitTestSourceDirectory>
-    <unitTest>
-      <includes>
-        <include>**/*Test.java</include>
-      </includes>
-    </unitTest>
-  </build>
-  <dependencies>
-    <dependency>
-      <groupId>accesslib</groupId>
-      <artifactId>accesslib</artifactId>
-      <version>SNAPSHOT</version>
-    </dependency>
-  </dependencies>
-</project>
