|
From: <be...@us...> - 2006-10-17 16:11:22
|
Revision: 22
http://svn.sourceforge.net/jtreemap/?rev=22&view=rev
Author: benoitx
Date: 2006-10-17 09:11:12 -0700 (Tue, 17 Oct 2006)
Log Message:
-----------
Maven build files
Added Paths:
-----------
trunk/JTreeMap/maven.xml
trunk/JTreeMap/project.xml
Added: trunk/JTreeMap/maven.xml
===================================================================
--- trunk/JTreeMap/maven.xml (rev 0)
+++ trunk/JTreeMap/maven.xml 2006-10-17 16:11:12 UTC (rev 22)
@@ -0,0 +1,18 @@
+<?xml version="1.0"?>
+
+<!--
+ /*
+ * ========================================================================
+ * ObjectLab Financial Ltd, proud sponsor of jt:FileReader.
+ * ========================================================================
+ */
+-->
+
+<project xmlns:j="jelly:core" xmlns:core="jelly:core"
+ xmlns:maven="jelly:maven" xmlns:ant="jelly:ant"
+ xmlns:define="jelly:define" xmlns:doc="doc" xmlns:util="jelly:util"
+ xmlns:log="jelly:log">
+
+ <goal name="jt:build" prereqs="jar:install" />
+ <goal name="jt:rebuild" prereqs="clean,jt:build" />
+</project>
Added: trunk/JTreeMap/project.xml
===================================================================
--- trunk/JTreeMap/project.xml (rev 0)
+++ trunk/JTreeMap/project.xml 2006-10-17 16:11:12 UTC (rev 22)
@@ -0,0 +1,66 @@
+<?xml version="1.0"?>
+
+<!--
+ /*
+ * ========================================================================
+ * $Id: project.xml 167 2006-09-12 15:11:43Z benoitx $
+ *
+ * Copyright 2006 the original author or authors.
+ *
+ * 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>../common-build/project.xml</extend>
+ <name>JTreeMap</name>
+ <artifactId>jtreemap</artifactId>
+ <package>org.jense.swing.jtreemap</package>
+ <shortDescription>JTreeMap is a Java Swing component which reprensents hierarchical structure in a Treemap.</shortDescription>
+ <description>
+ JTreeMap is a Java Swing component which reprensents hierarchical structure in a Treemap
+ </description>
+ <repository>
+ <connection>
+ scm:svn:https://svn.sourceforge.net/svnroot/jtreemap/trunk/JTreeMap
+ </connection>
+ <developerConnection>
+ scm:svn:https://svn.sourceforge.net/svnroot/jtreemap/trunk/JTreeMap
+ </developerConnection>
+ </repository>
+ <dependencies />
+
+ <build>
+ <sourceDirectory>src/main/java</sourceDirectory>
+ <unitTestSourceDirectory>src/test/java</unitTestSourceDirectory>
+ <unitTest>
+ <includes>
+ <include>**/*Test.java</include>
+ </includes>
+ <excludes>
+ <exclude>**/Abstract*.java</exclude>
+ </excludes>
+ </unitTest>
+ <resources>
+ <resource>
+ <directory>src/main/java</directory>
+ <includes>
+ <include>**/*.dtd</include>
+ </includes>
+ <filtering>false</filtering>
+ </resource>
+ </resources>
+ </build>
+
+</project>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|