|
From: <be...@us...> - 2006-10-17 16:36:13
|
Revision: 24
http://svn.sourceforge.net/jtreemap/?rev=24&view=rev
Author: benoitx
Date: 2006-10-17 09:35:59 -0700 (Tue, 17 Oct 2006)
Log Message:
-----------
required files for build of multi project under Maven 1.1
Added Paths:
-----------
trunk/common-build/
trunk/common-build/checkstyle_checks.xml
trunk/common-build/findbugs-exclude-filter.xml
trunk/common-build/objectlab_checks.xml
trunk/common-build/project.properties
trunk/common-build/project.xml
Added: trunk/common-build/checkstyle_checks.xml
===================================================================
--- trunk/common-build/checkstyle_checks.xml (rev 0)
+++ trunk/common-build/checkstyle_checks.xml 2006-10-17 16:35:59 UTC (rev 24)
@@ -0,0 +1,227 @@
+<?xml version="1.0"?>
+<!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.1//EN"
+ "http://www.puppycrawl.com/dtds/configuration_1_1.dtd">
+<!--
+
+ ObjectLab Checkstyle.
+ $Id: checkstyle_checks.xml 184 2006-09-17 09:42:49Z marchy $
+
+-->
+<module name="Checker">
+ <!-- Checks that a package.html file exists for each package. -->
+ <!-- See http://checkstyle.sf.net/config_javadoc.html#PackageHtml -->
+ <module name="PackageHtml" />
+ <!-- Checks whether files end with a new line. -->
+ <!-- See http://checkstyle.sf.net/config_misc.html#NewlineAtEndOfFile -->
+ <module name="NewlineAtEndOfFile" />
+ <!-- Checks that property files contain the same keys. -->
+ <!-- See http://checkstyle.sf.net/config_misc.html#Translation -->
+ <module name="Translation" />
+ <module name="TreeWalker">
+ <!-- ============================== -->
+ <!-- ============================== -->
+ <!-- Checks for Javadoc comments. -->
+ <!-- See http://checkstyle.sf.net/config_javadoc.html - ->
+ <module name="JavadocMethod">
+ <property name="scope" value="public"/>
+ </module>
+ <module name="JavadocType"/>
+ <module name="JavadocVariable"/>
+ -->
+ <!-- ============================== -->
+ <!-- ============================== -->
+ <!-- Checks for Naming Conventions. -->
+ <!-- See http://checkstyle.sf.net/config_naming.html -->
+ <module name="ConstantName" />
+ <module name="LocalFinalVariableName" />
+ <module name="LocalVariableName" />
+ <module name="MemberName" />
+ <module name="MethodName" />
+ <module name="PackageName" />
+ <module name="ParameterName" />
+ <module name="StaticVariableName" />
+ <module name="TypeName" />
+ <!-- ============================== -->
+ <!-- ============================== -->
+ <!-- Checks for Headers -->
+ <!-- See http://checkstyle.sf.net/config_header.html -->
+ <!-- <module name="Header"> -->
+ <!-- The follow property value demonstrates the ability -->
+ <!-- to have access to ANT properties. In this case it uses -->
+ <!-- the ${basedir} property to allow Checkstyle to be run -->
+ <!-- from any directory within a project. -->
+ <!-- <property name="headerFile" value="${basedir}/java.header"/>
+ </module>
+ -->
+ <!-- Following interprets the header file as regular expressions. -->
+ <!-- <module name="RegexpHeader"/> -->
+ <!-- ============================== -->
+ <!-- ============================== -->
+ <!-- Checks for imports -->
+ <!-- See http://checkstyle.sf.net/config_import.html -->
+ <module name="AvoidStarImport" />
+ <module name="IllegalImport" />
+ <!-- defaults to sun.* packages -->
+ <module name="RedundantImport" />
+ <module name="UnusedImports" />
+ <!-- ============================== -->
+ <!-- ============================== -->
+ <!-- Checks for Size Violations. -->
+ <!-- See http://checkstyle.sf.net/config_sizes.html -->
+ <module name="FileLength" />
+ <module name="LineLength">
+ <property name="max" value="150" />
+ </module>
+ <module name="MethodLength">
+ <property name="max" value="200" />
+ </module>
+ <module name="ParameterNumber">
+ <property name="max" value="8" />
+ </module>
+ <module name="AnonInnerLength">
+ <property name="max" value="25" />
+ </module>
+ <!-- ============================== -->
+ <!-- ============================== -->
+ <!-- Checks for whitespace -->
+ <!-- See http://checkstyle.sf.net/config_whitespace.html -->
+ <module name="EmptyForIteratorPad" />
+ <!-- <module name="NoWhitespaceAfter"/>
+ <module name="NoWhitespaceBefore"/>
+ <module name="WhitespaceAfter"/>
+ <module name="WhitespaceAround"/>
+ -->
+ <module name="OperatorWrap" />
+ <module name="ParenPad" />
+ <module name="TypecastParenPad" />
+ <module name="TabCharacter" />
+ <!-- ============================== -->
+ <!-- ============================== -->
+ <!-- Modifier Checks -->
+ <!-- See http://checkstyle.sf.net/config_modifiers.html -->
+ <module name="ModifierOrder" />
+ <module name="RedundantModifier" />
+ <!-- ============================== -->
+ <!-- ============================== -->
+ <!-- Checks for blocks. You know, those {}'s -->
+ <!-- See http://checkstyle.sf.net/config_blocks.html -->
+ <module name="AvoidNestedBlocks" />
+ <module name="EmptyBlock" />
+ <module name="LeftCurly" />
+ <module name="NeedBraces" />
+ <module name="RightCurly" />
+ <!-- ============================== -->
+ <!-- ============================== -->
+ <!-- Checks for common coding problems -->
+ <!-- See http://checkstyle.sf.net/config_coding.html -->
+ <!-- <module name="AvoidInlineConditionals"/> -->
+ <module name="DoubleCheckedLocking" />
+ <module name="EmptyStatement" />
+ <module name="EqualsHashCode" />
+ <module name="HiddenField">
+ <property name="ignoreSetter" value="true" />
+ <property name="ignoreConstructorParameter" value="true" />
+ </module>
+ <module name="IllegalInstantiation" />
+ <module name="InnerAssignment" />
+ <module name="MagicNumber" />
+ <module name="MissingSwitchDefault" />
+ <module name="RedundantThrows" />
+ <module name="SimplifyBooleanExpression" />
+ <module name="SimplifyBooleanReturn" />
+ <!-- ============================== -->
+ <!-- ============================== -->
+ <!-- Checks for class design -->
+ <!-- See http://checkstyle.sf.net/config_design.html -->
+ <!-- <module name="DesignForExtension"/> -->
+ <module name="MutableException" />
+ <module name="FinalClass" />
+ <module name="HideUtilityClassConstructor" />
+ <module name="InterfaceIsType" />
+ <module name="VisibilityModifier" />
+ <module name="ThrowsCount">
+ <property name="max" value="5" />
+ </module>
+ <!-- ============================== -->
+ <!-- ============================== -->
+ <!-- Miscellaneous other checks. -->
+ <!-- See http://checkstyle.sf.net/config_misc.html -->
+ <module name="ArrayTypeStyle" />
+ <module name="FinalParameters">
+ <property name="tokens" value="CTOR_DEF" />
+ </module>
+ <module name="GenericIllegalRegexp">
+ <!-- . matches any character, so we need to escape it and use \. to match dots. -->
+ <property name="format" value="System\.out\.println" />
+ </module>
+ <module name="GenericIllegalRegexp">
+ <!-- . matches any character, so we need to escape it and use \. to match dots. -->
+ <property name="format" value="System\.err\.println" />
+ </module>
+ <module name="TodoComment" />
+ <module name="UpperEll" />
+ <!-- ============================== -->
+ <!-- ============================== -->
+ <!-- New Tests with 3.2 -->
+ <module name="CyclomaticComplexity">
+ <property name="max" value="15" />
+ <!-- <property name="severity" value="ignore"/> -->
+ </module>
+ <!-- ============================== -->
+ <!-- ============================== -->
+ <!-- See http://checkstyle.sf.net/config_usage.html -->
+ <!-- <module name="usage.OneMethodPrivateField"/>
+ <module name="usage.UnusedLocalVariable" />
+ <module name="usage.UnusedParameter">
+ <property name="ignoreFormat" value="^ignore" />
+ </module>
+ <module name="usage.UnusedPrivateField">
+ <property name="ignoreFormat" value="serialVersionUID" />
+ </module>
+ <module name="usage.UnusedPrivateMethod">
+ <property name="ignoreFormat"
+ value="readObject$|writeObject$|readResolve$" />
+ </module>-->
+ <module name="StringLiteralEquality" />
+ <module name="SuperClone" />
+ <module name="SuperFinalize" />
+ <module name="NestedIfDepth">
+ <property name="max" value="3" />
+ </module>
+ <module name="NestedTryDepth" />
+ <module name="ReturnCount">
+ <property name="max" value="3" />
+ </module>
+ <!-- ============================== -->
+ <!-- ============================== -->
+ <!-- j2ee stuff -->
+ <module name="j2ee.FinalStatic" />
+ <module name="j2ee.LocalHomeInterface" />
+ <module name="j2ee.LocalInterface" />
+ <module name="j2ee.MessageBean" />
+ <module name="j2ee.RemoteHomeInterface" />
+ <module name="j2ee.RemoteInterface" />
+ <module name="j2ee.SessionBean" />
+ <module name="j2ee.ThisParameter" />
+ <module name="j2ee.ThisReturn" />
+ <!-- ============================== -->
+ <!-- ============================== -->
+ <!-- New 3.4 tests -->
+ <module name="BooleanExpressionComplexity">
+ <property name="max" value="7" />
+ </module>
+ <module name="ClassDataAbstractionCoupling">
+ <property name="max" value="13" />
+ </module>
+ <module name="NPathComplexity" />
+ <module name="FallThrough" />
+ <module name="MultipleVariableDeclarations" />
+ <!-- <module name="UnnecessaryParentheses"/> -->
+ <!-- New 3.4 tests -->
+ </module>
+ <!-- <module name="SuppressionFilter">
+ <property name="file" value="lib/build/checkstyle-suppressions.xml"/>
+ </module>
+ -->
+</module>
+
Added: trunk/common-build/findbugs-exclude-filter.xml
===================================================================
--- trunk/common-build/findbugs-exclude-filter.xml (rev 0)
+++ trunk/common-build/findbugs-exclude-filter.xml 2006-10-17 16:35:59 UTC (rev 24)
@@ -0,0 +1,12 @@
+<!--
+ /*
+ * ========================================================================
+ * ObjectLab Financial Ltd, proud sponsor of The Kit.
+ * ========================================================================
+ */
+-->
+<FindBugsFilter>
+ <Match classregex="net.*">
+ <BugCode name="EI,EI2" />
+ </Match>
+</FindBugsFilter>
Added: trunk/common-build/objectlab_checks.xml
===================================================================
--- trunk/common-build/objectlab_checks.xml (rev 0)
+++ trunk/common-build/objectlab_checks.xml 2006-10-17 16:35:59 UTC (rev 24)
@@ -0,0 +1,226 @@
+<?xml version="1.0"?>
+<!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.1//EN"
+ "http://www.puppycrawl.com/dtds/configuration_1_1.dtd">
+<!--
+
+ ObjectLab Checkstyle.
+-->
+
+<module name="Checker">
+ <!-- Checks that a package.html file exists for each package. -->
+ <!-- See http://checkstyle.sf.net/config_javadoc.html#PackageHtml -->
+ <module name="PackageHtml" />
+ <!-- Checks whether files end with a new line. -->
+ <!-- See http://checkstyle.sf.net/config_misc.html#NewlineAtEndOfFile
+ <module name="NewlineAtEndOfFile"/>-->
+ <!-- Checks that property files contain the same keys. -->
+ <!-- See http://checkstyle.sf.net/config_misc.html#Translation -->
+ <module name="Translation" />
+ <module name="TreeWalker">
+ <!-- ============================== -->
+ <!-- ============================== -->
+ <!-- Checks for Javadoc comments. -->
+ <!-- See http://checkstyle.sf.net/config_javadoc.html - ->
+ <module name="JavadocMethod">
+ <property name="scope" value="public"/>
+ </module>
+ <module name="JavadocType"/>
+ <module name="JavadocVariable"/>
+ -->
+ <!-- ============================== -->
+ <!-- ============================== -->
+ <!-- Checks for Naming Conventions. -->
+ <!-- See http://checkstyle.sf.net/config_naming.html -->
+ <module name="ConstantName" />
+ <module name="LocalFinalVariableName" />
+ <module name="LocalVariableName" />
+ <module name="MemberName" />
+ <module name="MethodName" />
+ <module name="PackageName" />
+ <module name="ParameterName" />
+ <module name="StaticVariableName" />
+ <module name="TypeName" />
+ <!-- ============================== -->
+ <!-- ============================== -->
+ <!-- Checks for Headers -->
+ <!-- See http://checkstyle.sf.net/config_header.html -->
+ <!-- <module name="Header"> -->
+ <!-- The follow property value demonstrates the ability -->
+ <!-- to have access to ANT properties. In this case it uses -->
+ <!-- the ${basedir} property to allow Checkstyle to be run -->
+ <!-- from any directory within a project. -->
+ <!-- <property name="headerFile" value="${basedir}/java.header"/>
+ </module>
+ -->
+ <!-- Following interprets the header file as regular expressions. -->
+ <!-- <module name="RegexpHeader"/> -->
+ <!-- ============================== -->
+ <!-- ============================== -->
+ <!-- Checks for imports -->
+ <!-- See http://checkstyle.sf.net/config_import.html -->
+ <module name="AvoidStarImport" />
+ <module name="IllegalImport" />
+ <!-- defaults to sun.* packages -->
+ <module name="RedundantImport" />
+ <module name="UnusedImports" />
+ <!-- ============================== -->
+ <!-- ============================== -->
+ <!-- Checks for Size Violations. -->
+ <!-- See http://checkstyle.sf.net/config_sizes.html -->
+ <module name="FileLength" />
+ <module name="LineLength">
+ <property name="max" value="150" />
+ </module>
+ <module name="MethodLength">
+ <property name="max" value="200" />
+ </module>
+ <module name="ParameterNumber">
+ <property name="max" value="8" />
+ </module>
+ <module name="AnonInnerLength">
+ <property name="max" value="25" />
+ </module>
+ <!-- ============================== -->
+ <!-- ============================== -->
+ <!-- Checks for whitespace -->
+ <!-- See http://checkstyle.sf.net/config_whitespace.html -->
+ <module name="EmptyForIteratorPad" />
+ <!-- <module name="NoWhitespaceAfter"/>
+ <module name="NoWhitespaceBefore"/>
+ <module name="WhitespaceAfter"/>
+ <module name="WhitespaceAround"/>
+ -->
+ <module name="OperatorWrap" />
+ <module name="ParenPad" />
+ <module name="TypecastParenPad" />
+ <module name="TabCharacter" />
+ <!-- ============================== -->
+ <!-- ============================== -->
+ <!-- Modifier Checks -->
+ <!-- See http://checkstyle.sf.net/config_modifiers.html -->
+ <module name="ModifierOrder" />
+ <module name="RedundantModifier" />
+ <!-- ============================== -->
+ <!-- ============================== -->
+ <!-- Checks for blocks. You know, those {}'s -->
+ <!-- See http://checkstyle.sf.net/config_blocks.html -->
+ <module name="AvoidNestedBlocks" />
+ <module name="EmptyBlock" />
+ <module name="LeftCurly" />
+ <module name="NeedBraces" />
+ <module name="RightCurly" />
+ <!-- ============================== -->
+ <!-- ============================== -->
+ <!-- Checks for common coding problems -->
+ <!-- See http://checkstyle.sf.net/config_coding.html -->
+ <!-- <module name="AvoidInlineConditionals"/> -->
+ <module name="DoubleCheckedLocking" />
+ <module name="EmptyStatement" />
+ <module name="EqualsHashCode" />
+ <module name="HiddenField">
+ <property name="ignoreSetter" value="true" />
+ <property name="ignoreConstructorParameter" value="true" />
+ </module>
+ <module name="IllegalInstantiation" />
+ <module name="InnerAssignment" />
+ <module name="MagicNumber" />
+ <module name="MissingSwitchDefault" />
+ <module name="RedundantThrows" />
+ <module name="SimplifyBooleanExpression" />
+ <module name="SimplifyBooleanReturn" />
+ <!-- ============================== -->
+ <!-- ============================== -->
+ <!-- Checks for class design -->
+ <!-- See http://checkstyle.sf.net/config_design.html -->
+ <!-- <module name="DesignForExtension"/> -->
+ <module name="MutableException" />
+ <module name="FinalClass" />
+ <module name="HideUtilityClassConstructor" />
+ <module name="InterfaceIsType" />
+ <module name="VisibilityModifier" />
+ <module name="ThrowsCount">
+ <property name="max" value="5" />
+ </module>
+ <!-- ============================== -->
+ <!-- ============================== -->
+ <!-- Miscellaneous other checks. -->
+ <!-- See http://checkstyle.sf.net/config_misc.html -->
+ <module name="ArrayTypeStyle" />
+ <module name="FinalParameters">
+ <property name="tokens" value="CTOR_DEF" />
+ </module>
+ <module name="GenericIllegalRegexp">
+ <!-- . matches any character, so we need to escape it and use \. to match dots. -->
+ <property name="format" value="System\.out\.println" />
+ </module>
+ <module name="GenericIllegalRegexp">
+ <!-- . matches any character, so we need to escape it and use \. to match dots. -->
+ <property name="format" value="System\.err\.println" />
+ </module>
+ <module name="TodoComment" />
+ <module name="UpperEll" />
+ <!-- ============================== -->
+ <!-- ============================== -->
+ <!-- New Tests with 3.2 -->
+ <module name="CyclomaticComplexity">
+ <property name="max" value="15" />
+ <!-- <property name="severity" value="ignore"/> -->
+ </module>
+ <!-- ============================== -->
+ <!-- ============================== -->
+ <!-- See http://checkstyle.sf.net/config_usage.html -->
+ <!-- <module name="usage.OneMethodPrivateField"/>
+ <module name="usage.UnusedLocalVariable"/>
+ <module name="usage.UnusedParameter">
+ <property name="ignoreFormat" value="^ignore"/>
+ </module>
+ <module name="usage.UnusedPrivateField">
+ <property name="ignoreFormat" value="serialVersionUID"/>
+ </module>
+ <module name="usage.UnusedPrivateMethod">
+ <property name="ignoreFormat" value="readObject$|writeObject$|readResolve$"/>
+ </module>-->
+ <module name="StringLiteralEquality" />
+ <module name="SuperClone" />
+ <module name="SuperFinalize" />
+ <module name="NestedIfDepth">
+ <property name="max" value="3" />
+ </module>
+ <module name="NestedTryDepth" />
+ <module name="ReturnCount">
+ <property name="max" value="3" />
+ </module>
+ <!-- ============================== -->
+ <!-- ============================== -->
+ <!-- j2ee stuff -->
+ <module name="j2ee.FinalStatic" />
+ <module name="j2ee.LocalHomeInterface" />
+ <module name="j2ee.LocalInterface" />
+ <module name="j2ee.MessageBean" />
+ <module name="j2ee.RemoteHomeInterface" />
+ <module name="j2ee.RemoteInterface" />
+ <module name="j2ee.SessionBean" />
+ <module name="j2ee.ThisParameter" />
+ <module name="j2ee.ThisReturn" />
+ <!-- ============================== -->
+ <!-- ============================== -->
+ <!-- New 3.4 tests -->
+ <module name="BooleanExpressionComplexity">
+ <property name="max" value="7" />
+ </module>
+ <module name="ClassDataAbstractionCoupling">
+ <property name="max" value="13" />
+ </module>
+ <module name="NPathComplexity" />
+ <module name="FallThrough" />
+ <module name="MultipleVariableDeclarations" />
+ <!-- <module name="UnnecessaryParentheses"/> -->
+ <!-- New 3.4 tests -->
+ </module>
+ <!--
+ <module name="SuppressionFilter">
+ <property name="file" value="lib/build/checkstyle-suppressions.xml"/>
+ </module>
+ -->
+</module>
+
Added: trunk/common-build/project.properties
===================================================================
--- trunk/common-build/project.properties (rev 0)
+++ trunk/common-build/project.properties 2006-10-17 16:35:59 UTC (rev 24)
@@ -0,0 +1,103 @@
+#/*
+# * ========================================================================
+# *
+# *
+# * ========================================================================
+# */
+maven.checkstyle.header.file = ${basedir}/../checkstyle-license.txt
+
+# Make sure we fork JUnit so that we can use a different version of Ant than
+# the one provided by Maven.
+maven.junit.fork = true
+
+# Display junit execution details on screen
+maven.junit.usefile = false
+
+# Do not display junit test suite summary information
+maven.junit.printSummary = false
+
+# Print names of test cases as they execute
+maven.junit.format = plain
+
+# Target 1.4 JVMs
+maven.compile.target=5
+# Source code is 1.5
+maven.compile.source=1.5
+#maven.compile.verbose=true
+
+maven.multiproject.ignoreFailures=true
+
+# Deprecation compilation
+maven.compile.deprecation=on
+maven.javadoc.debug=true
+
+# -------------------------------------------------------------------
+# T E S T P R O P E R T I E S
+# -------------------------------------------------------------------
+# Source Code for Test
+maven.test.source = 1.4
+# enabling RUNNING with assertions!
+maven.junit.jvmargs=-ea
+maven.test.failure.ignore=true
+
+# As we're using SVN we need to have this property set to tell the changelog plugin to use SVN
+# and not CVS (which is its default)
+#maven.changelog.factory = org.apache.maven.svnlib.SvnChangeLogFactory
+
+# -------------------------------------------------------------------
+# S I M I A N P R O P E R T I E S
+# -------------------------------------------------------------------
+maven.simian.includetests=false
+
+# -------------------------------------------------------------------
+# Q A L A B P R O P E R T I E S
+# -------------------------------------------------------------------
+#maven.qalab.merge.outputfile = ${basedir}/../qalab.xml
+#maven.qalab.chart.destinationdir=${basedir}/../target/docs/qalab
+#maven.qalab.movers.outputfile=${basedir}/../target/docs/qalab/qalab-movers.xml
+maven.qalab.merge.propertiesFile=${basedir}/../project.properties
+qalab.merge.timestampdateonly=true
+qalab.merge.action=replace
+maven.qalab.merge.quiet=true
+
+##
+## Y D O C
+##
+maven.ydoc.packages=com.pz.*
+
+#maven.build.dest = ${basedir}/classes
+# ------------------------------------------------------------------------
+# M A V E N J A R O V E R R I D E
+# ------------------------------------------------------------------------
+maven.jar.override = on
+
+# ------------------------------------------------------------------------
+# Jars set explicity by path.
+# ------------------------------------------------------------------------
+maven.jar.class2svg = ${basedir}/../common-build/class2svg.jar
+maven.jar.tools = ${java.home}/../lib/tools.jar
+
+maven.javadoc.additionalparam = "-breakiterator"
+
+#maven.ydoc.resources = ${basedir}/../common-build/resources
+
+#maven.xdoc.theme.url=http://maven.apache.org/maven-1.x/style/maven-stylus.css
+#maven.xdoc.theme.url=http://maven.apache.org/style/maven-stylus.css
+maven.xdoc.theme=objectlab
+maven.docs.src=${basedir}/src/site
+
+#
+# CHECKSTYLE
+#
+maven.checkstyle.dir=${maven.build.dir}
+maven.checkstyle.properties=${basedir}/../common-build/objectlab_checks.xml
+maven.checkstyle.check.tests=false
+
+#
+# PMD
+#
+maven.pmd.targetjdk=1.4
+
+maven.multiproject.navigation=independent
+
+maven.repo.remote=http://repo1.maven.org/maven,http://people.apache.org/repo/m1-snapshot-repository/
Added: trunk/common-build/project.xml
===================================================================
--- trunk/common-build/project.xml (rev 0)
+++ trunk/common-build/project.xml 2006-10-17 16:35:59 UTC (rev 24)
@@ -0,0 +1,180 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ /*
+ * ========================================================================
+ * $Id: project.xml 209 2006-10-12 10:17:42Z 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 xmlns="http://maven.apache.org/POM/3.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
+ <pomVersion>3</pomVersion>
+ <groupId>org.jense.swing.jtreemap</groupId>
+ <currentVersion>1.1.0</currentVersion>
+ <organization>
+ <name>ObjectLab Financial Ltd</name>
+ <url>http://www.objectlab.co.uk</url>
+ <logo>
+ http://www.objectlab.co.uk/images/objectlab-web-noblue.gif
+ </logo>
+ </organization>
+ <inceptionYear>2005</inceptionYear>
+ <url>http://jtreemap.sourceforge.net</url>
+ <issueTrackingUrl>
+ http://www.sourceforge.net/tracker/?group_id=26527
+ </issueTrackingUrl>
+ <siteAddress>jtreemap.sourceforge.net</siteAddress>
+ <siteDirectory/>
+ <repository>
+ <url>http://svn.sourceforge.net/jtreemap</url>
+ <connection>
+ scm:svn:https://svn.sourceforge.net/svnroot/jtreemap/trunk
+ </connection>
+ <developerConnection>
+ scm:svn:https://svn.sourceforge.net/svnroot/jtreemap/trunk
+ </developerConnection>
+ </repository>
+ <developers>
+ <developer>
+ <name>Laurent Dutheil</name>
+ <id>jense128</id>
+ <email>jense128 at users.sourceforge.net</email>
+ <organization>Laurent Dutheil</organization>
+ <url>http://www.jense.org</url>
+ <timezone>0</timezone>
+ <roles>
+ <role>Founder</role>
+ <role>Java Developer</role>
+ </roles>
+ </developer>
+ <developer>
+ <name>Benoit Xhenseval</name>
+ <id>benoitx</id>
+ <email>kit AT objectlab DOT co dOt uk</email>
+ <organization>ObjectLab Financial Ltd</organization>
+ <roles>
+ <role>Developer</role>
+ </roles>
+ <url>http://www.xhenseval.com</url>
+ <timezone>+0</timezone>
+ </developer>
+ <developer>
+ <name>Marcin Jekot</name>
+ <id>marchy</id>
+ <email>marcin at jekot DOt net</email>
+ <organization>ObjectLab Financial Ltd</organization>
+ <roles>
+ <role>Subversion mig</role>
+ </roles>
+ <timezone>+0</timezone>
+ </developer>
+ </developers>
+ <!-- any mailing lists for the project -->
+ <mailingLists>
+ <mailingList>
+ <name>JTreeMap Announcements</name>
+ <subscribe>
+ http://lists.sourceforge.net/lists/listinfo/jtreemap-news
+ </subscribe>
+ <unsubscribe>
+ http://lists.sourceforge.net/lists/listinfo/jtreemap-news
+ </unsubscribe>
+ <post/>
+ <archive>
+ http://sourceforge.net/mailarchive/forum.php?forum=jtreemap-news
+ </archive>
+
+ </mailingList>
+ <mailingList>
+ <name>JTreeMap User</name>
+ <subscribe>
+ http://lists.sourceforge.net/lists/listinfo/jtreemap-user
+ </subscribe>
+ <unsubscribe>
+ http://lists.sourceforge.net/lists/listinfo/jtreemap-user
+ </unsubscribe>
+ <post>jtr...@li...</post>
+ <archive>
+ http://sourceforge.net/mailarchive/forum.php?forum=jtreemap-user
+ </archive>
+ </mailingList>
+ <mailingList>
+ <name>JTreeMap Developers (SVN checkins)</name>
+ <subscribe>
+ http://lists.sourceforge.net/lists/listinfo/jtreemap-svn
+ </subscribe>
+ <unsubscribe>
+ http://lists.sourceforge.net/lists/listinfo/jtreemap-svn
+ </unsubscribe>
+ <post/>
+ <archive>
+ http://sourceforge.net/mailarchive/forum.php?forum=jtreemap-svn
+ </archive>
+ </mailingList>
+ </mailingLists>
+
+ <dependencies/>
+<!-- <dependency>
+ <groupId>jdom</groupId>
+ <artifactId>jdom</artifactId>
+ <version>1.0</version>
+ <type>jar</type>
+ <url>http://www.jdom.org</url>
+ </dependency>
+ <dependency>
+ <groupId>jexcelapi</groupId>
+ <artifactId>jxl</artifactId>
+ <version>2.4.2</version>
+ <type>jar</type>
+ <url>http://sourceforge.net/projects/jexcelapi</url>
+ </dependency>
+ </dependencies>
+-->
+ <build>
+ <!-- We need to put here something other when we release it or I'll receive the emails from
+ everyone who tries to use the project... -->
+ <nagEmailAddress>ki...@ob...</nagEmailAddress>
+ <defaultGoal>jt:build</defaultGoal>
+ </build>
+
+ <reports>
+ <report>maven-checkstyle-plugin</report>
+ <report>maven-findbugs-plugin</report>
+ <report>maven-pmd-plugin</report>
+ <report>maven-simian-plugin</report>
+ <report>maven-cobertura-plugin</report>
+ <report>maven-qalab-plugin</report>
+ <report>maven-javadoc-plugin</report>
+ <report>maven-jdepend-plugin</report>
+ <report>maven-faq-plugin</report>
+ <report>maven-junit-report-plugin</report>
+ <report>maven-jxr-plugin</report>
+ <report>maven-tasklist-plugin</report>
+ </reports>
+
+ <versions>
+ <version>
+ <id>1.1.0</id>
+ <name>1.1.0</name>
+ <tag>v1.1.0</tag>
+ </version>
+ </versions>
+</project>
+
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|