Author: bpoussin Date: 2008-07-21 14:12:37 +0000 (Mon, 21 Jul 2008) New Revision: 1248 Removed: trunk/isis-fish/lutincheckstyle.xml trunk/isis-fish/lutinheader.txt trunk/isis-fish/lutinproject.xml trunk/isis-fish/maven.xml trunk/isis-fish/project.properties trunk/isis-fish/project.xml Log: suppression des fichiers maven 1 Deleted: trunk/isis-fish/lutincheckstyle.xml =================================================================== --- trunk/isis-fish/lutincheckstyle.xml 2008-07-21 14:10:08 UTC (rev 1247) +++ trunk/isis-fish/lutincheckstyle.xml 2008-07-21 14:12:37 UTC (rev 1248) @@ -1,189 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE module PUBLIC - "-//Puppy Crawl//DTD Check Configuration 1.1//EN" - "http://www.puppycrawl.com/dtds/configuration_1_1.dtd"> - -<!-- - - Checkstyle configuration that checks the sun coding conventions from: - - - the Java Language Specification at - http://java.sun.com/docs/books/jls/second_edition/html/index.html - - - the Sun Code Conventions at http://java.sun.com/docs/codeconv/ - - - the Javadoc guidelines at - http://java.sun.com/j2se/javadoc/writingdoccomments/index.html - - - the JDK Api documentation http://java.sun.com/j2se/docs/api/index.html - - - some best practices - - Checkstyle is very configurable. Be sure to read the documentation at - http://checkstyle.sf.net (or in your downloaded distribution). - - Most Checks are configurable, be sure to consult the documentation. - - To completely disable a check, just comment it out or delete it from the file. - - Finally, it is worth reading the documentation. - ---> - -<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"> - - <property name="cacheFile" value="${checkstyle.cache.file}"/> - - <!-- Checks for Javadoc comments. --> - <!-- See http://checkstyle.sf.net/config_javadoc.html --> - <module name="JavadocMethod"/> - <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="${checkstyle.header.file}"/> - <property name="ignoreLines" value="4,22,24,26,27,29,30"/> - </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"/> - <module name="MethodLength"/> - <module name="ParameterNumber"/> - - - <!-- Checks for whitespace --> - <!-- See http://checkstyle.sf.net/config_whitespace.html --> - <module name="EmptyForIteratorPad"/> - <module name="NoWhitespaceAfter"/> - <module name="NoWhitespaceBefore"/> - <module name="OperatorWrap"/> - <module name="ParenPad"/> - <module name="TabCharacter"/> - <module name="WhitespaceAfter"> - <property name="tokens" value="COMMA, SEMI"/> - </module> - <module name="WhitespaceAround"> - <property name="tokens" value="ASSIGN, BAND, BAND_ASSIGN, BOR, BOR_ASSIGN, BSR, BSR_ASSIGN, BXOR, BXOR_ASSIGN, COLON, DIV, DIV_ASSIGN, EQUAL, GE, GT, LAND, LCURLY, LE, LITERAL_ASSERT, LITERAL_RETURN, LITERAL_SYNCHRONIZED, LITERAL_TRY, LITERAL_WHILE, LOR, LT, MINUS, MINUS_ASSIGN, MOD, MOD_ASSIGN, NOT_EQUAL, PLUS, PLUS_ASSIGN, QUESTION, RCURLY, SL, SLIST, SL_ASSIGN, SR, SR_ASSIGN, STAR, STAR_ASSIGN"/> - <!-- BB: LITERAL_CATCH, LITERAL_DO, LITERAL_ELSE, LITERAL_FINALLY, LITERAL_FOR, LITERAL_IF, --> - </module> - - <!-- 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"> - <property name="option" value="eol"/> - </module> - <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"/> <!-- MY FAVOURITE --> - <module name="EmptyStatement"/> - <module name="EqualsHashCode"/> - <module name="HiddenField"> - <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"/> - <module name="SuperClone"/> - <module name="SuperFinalize"/> - <module name="PackageDeclaration"/> - <module name="ReturnCount"/> - <module name="DeclarationOrder"/> - <module name="ParameterAssignment"/> - <module name="DefaultComesLast"/> - <module name="FallThrough"/> -<!-- BB que dans le 3.5 :( <module name="MultipleStringLiterals"/> --> - <module name="MultipleVariableDeclarations"/> - - - - <!-- Checks for class design --> - <!-- See http://checkstyle.sf.net/config_design.html --> -<!-- BB <module name="DesignForExtension"/> --> - <module name="FinalClass"/> - <module name="HideUtilityClassConstructor"/> - <module name="InterfaceIsType"/> - <module name="VisibilityModifier"> - <property name="protectedAllowed" value="true"/> - </module> - - - <!-- Miscellaneous other checks. --> - <!-- See http://checkstyle.sf.net/config_misc.html --> - <module name="ArrayTypeStyle"/> -<!-- BB peut-être <module name="FinalParameters"/> --> - <module name="GenericIllegalRegexp"> - <property name="format" value="\s+$"/> - <property name="message" value="Line has trailing spaces."/> - </module> - <module name="TodoComment"/> - <module name="UpperEll"/> - - </module> - -</module> Deleted: trunk/isis-fish/lutinheader.txt =================================================================== --- trunk/isis-fish/lutinheader.txt 2008-07-21 14:10:08 UTC (rev 1247) +++ trunk/isis-fish/lutinheader.txt 2008-07-21 14:12:37 UTC (rev 1248) @@ -1,31 +0,0 @@ -/* *##% -* Copyright (C) 2002, 2003, 2004, 2005 Code Lutin, -* Cédric Pineau, Benjamin Poussin, -* -* -* This program is free software; you can redistribute it and/or -* modify it under the terms of the GNU General Public License -* as published by the Free Software Foundation; either version 2 -* of the License, or (at your option) any later version. -* -* This program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with this program; if not, write to the Free Software -* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -*##%*/ - -/* * -* <FILENAME.java> -* -* Created: <DATE> -* -* @author Benjamin Poussin <poussin at codelutin.com> -* @version $Revision$ -* -* Mise a jour: $Date$ -* par : $Author$ -*/ Deleted: trunk/isis-fish/lutinproject.xml =================================================================== --- trunk/isis-fish/lutinproject.xml 2008-07-21 14:10:08 UTC (rev 1247) +++ trunk/isis-fish/lutinproject.xml 2008-07-21 14:12:37 UTC (rev 1248) @@ -1,152 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project> - <!-- the version of maven's project object model --> - <pomVersion>3</pomVersion> - <id>lutinlib:null</id> - <groupId>lutinlib</groupId> - <!-- details about the organization that 'owns' the project --> - <organization> - <name>Code Lutin</name> - <url>http://www.codelutin.com/</url> - <logo>http://www.codelutin.com/cl-images/mini-lutin.png</logo> - </organization> - <!-- the project home page --> - <url>http://labs.libre-entreprise.org/projects/${pom.artifactId}</url> - <issueTrackingUrl>http://labs.libre-entreprise.org/tracker/</issueTrackingUrl> - <siteAddress>labs.libre-entreprise.org</siteAddress> - <siteDirectory>/home/groups/${pom.artifactId}/htdocs/</siteDirectory> - <distributionSite>labs.libre-entreprise.org</distributionSite> - <distributionDirectory>/home/groups/lutinbuilder/htdocs/maven</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:pserver:anonymous at cvs.labs.libre-entreprise.org:/cvsroot/${pom.artifactId}:${pom.artifactId}</connection> - <url>http://cvs.labs.libre-entreprise.org/cgi-bin/cvsweb.cgi/?cvsroot=${pom.artifactId}</url> - </repository> - - <!-- who the developers are for the project --> - <developers> - <developer> - <name>Benjamin Poussin</name> - <id>bpoussin</id> - <email>poussin at codelutin.com</email> - <organization>Code Lutin</organization> - <timezone>+2</timezone> - </developer> - <developer> - <name>Cédric Pineau</name> - <id>pineau</id> - <email>pineau at codelutin.com</email> - <organization>Code Lutin</organization> - <timezone>+2</timezone> - </developer> - </developers> - - <!-- any mailing lists for the project --> - <mailingLists> - <mailingList> - <name>${pom.artifactId}-cvscommit</name> - <subscribe>http://lists.labs.libre-entreprise.org/mailman/listinfo/${pom.artifactId}-cvscommit</subscribe> - <unsubscribe>http://lists.labs.libre-entreprise.org/mailman/listinfo/${pom.artifactId}-cvscommit</unsubscribe> - <archive>http://lists.labs.libre-entreprise.org/pipermail/${pom.artifactId}-cvscommit/</archive> - </mailingList> - <mailingList> - <name>${pom.artifactId}-devel</name> - <subscribe>http://lists.labs.libre-entreprise.org/mailman/listinfo/${pom.artifactId}-devel</subscribe> - <unsubscribe>http://lists.labs.libre-entreprise.org/mailman/listinfo/${pom.artifactId}-devel</unsubscribe> - <archive>http://lists.labs.libre-entreprise.org/pipermail/${pom.artifactId}-devel/</archive> - </mailingList> - <mailingList> - <name>${pom.artifactId}-user</name> - <subscribe>http://lists.labs.libre-entreprise.org/mailman/listinfo/${pom.artifactId}-user</subscribe> - <unsubscribe>http://lists.labs.libre-entreprise.org/mailman/listinfo/${pom.artifactId}-user</unsubscribe> - <archive>http://lists.labs.libre-entreprise.org/pipermail/${pom.artifactId}-user/</archive> - </mailingList> - </mailingLists> - <licenses> - <license> - <name>GPL</name> - <url>http://www.gnu.org/copyleft/gpl.html</url> - <distribution>repo</distribution> - </license> - </licenses> - <!-- jar files the project is dependent on --> - <reports> - <report>maven-changelog-plugin</report> - <report>maven-changes-plugin</report> - <!-- <report>maven-checkstyle-plugin</report> --> - <report>maven-developer-activity-plugin</report> - <report>maven-file-activity-plugin</report> - <report>maven-javadoc-plugin</report> - <report>maven-jdepend-plugin</report> - <report>maven-junit-report-plugin</report> - <report>maven-jxr-plugin</report> - <report>maven-license-plugin</report> - <!-- <report>maven-pmd-plugin</report> --> - <report>maven-statcvs-plugin</report> - <!-- <report>maven-simian-plugin</report> --> - <report>maven-tasklist-plugin</report> - </reports> - <!-- build information for the project --> - <build> - <nagEmailAddress>poussin+${pom.artifactId}@codelutin.org</nagEmailAddress> - <sourceDirectory>${maven.src.dir}/java</sourceDirectory> - <unitTestSourceDirectory>${maven.src.dir}/test</unitTestSourceDirectory> - <unitTest> - <includes> - <include>**/*Test.java</include> - </includes> - <excludes> - <exclude>**/NaughtyTest.java</exclude> - </excludes> - </unitTest> - <resources> - <resource> - <directory>${maven.src.dir}/java</directory> - <includes> - <include>**/*.properties</include> - <include>**/*.xml</include> - <include>**/*.jdo</include> - </includes> - <filtering>false</filtering> - </resource> - <resource> - <directory>${maven.src.dir}/resources</directory> - <includes> - <include>**/*.ssx</include> - <include>**/*.shp</include> - <include>**/*.properties</include> - <include>**/*.png</include> - <include>**/*.gif</include> - <include>**/*.jpg</include> - <include>**/*.xml</include> - </includes> - <filtering>false</filtering> - </resource> - <resource> - <directory>${maven.src.dir}/uimodel</directory> - <includes> - <include>**/*.xml</include> - <include>**/*.xgl</include> - <include>**/*.bsh</include> - </includes> - <filtering>false</filtering> - </resource> - <resource> - <directory>${maven.src.dir}/xsl</directory> - <includes> - <include>**/*.xsl</include> - </includes> - <filtering>false</filtering> - </resource> - <resource> - <directory>${maven.src.dir}/java</directory> - <includes> - <include>**/*.hbm.xml</include> - </includes> - </resource> - </resources> - </build> -</project> - Deleted: trunk/isis-fish/maven.xml =================================================================== --- trunk/isis-fish/maven.xml 2008-07-21 14:10:08 UTC (rev 1247) +++ trunk/isis-fish/maven.xml 2008-07-21 14:12:37 UTC (rev 1248) @@ -1,35 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-15"?> - -<project - xmlns:maven="jelly:maven" - xmlns:j="jelly:core" - xmlns:util="jelly:util" - xmlns:ant="jelly:ant" - xmlns:artifact="artifact" - default="jar:jar"> - - <preGoal name="java:compile"> - <attainGoal name="topia:build"/> - </preGoal> - - <postGoal name="java:compile"> - <attainGoal name="topia:postbuild"/> - </postGoal> - - <preGoal name="site"> - <attainGoal name="topia:docs"/> - </preGoal> - - <postGoal name="jar:jar"> - <ant:copy toDir="${maven.build.dir}"> - <!-- copy dependent jars to target dir, for testing --> - <j:forEach var="lib" items="${pom.artifacts}"> - <j:set var="dep" value="${lib.dependency}"/> - <j:if test="${dep.getProperty('jar.manifest.classpath')=='true'}"> - <ant:fileset file="${lib.file.parent}/${lib.file.name}"/> - </j:if> - </j:forEach> - </ant:copy> - </postGoal> - -</project> Deleted: trunk/isis-fish/project.properties =================================================================== --- trunk/isis-fish/project.properties 2008-07-21 14:10:08 UTC (rev 1247) +++ trunk/isis-fish/project.properties 2008-07-21 14:12:37 UTC (rev 1248) @@ -1,17 +0,0 @@ -maven.src.dir=${basedir}/target/src-build -maven.jar.mainclass=fr.ifremer.isisfish.IsisFish -maven.jar.manifest.classpath.add=true - -#maven.topia.persistence=Topia2 -maven.topia.generator.ObjectModel=org.codelutin.topia.generator.TopiaMetaGenerator -#maven.topia.generator.UIModel=skip - -# Checkstyle Report -maven.checkstyle.header.file=${basedir}/lutinheader.txt -maven.checkstyle.properties=${basedir}/lutincheckstyle.xml - -maven.test.skip=true - -# Maven eclipse plugin -maven.eclipse.output.dir=${basedir}/classes -maven.eclipse.test.output.dir=${basedir}/classes Deleted: trunk/isis-fish/project.xml =================================================================== --- trunk/isis-fish/project.xml 2008-07-21 14:10:08 UTC (rev 1247) +++ trunk/isis-fish/project.xml 2008-07-21 14:12:37 UTC (rev 1248) @@ -1,419 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-15"?> -<project> - - <extend>${basedir}/lutinproject.xml</extend> - - <!-- a unique name for this project --> - <!--j'essaie de tout casser --> - <id>isis-fish</id> - - <!-- a short but descriptive name for the project --> - <name>IsisFish</name> - - <!-- The version of the project under development, e.g. - 1.1, 1.2, 2.0-SNAPSHOT --> - <currentVersion>3.0.0</currentVersion> - - <!-- the year the project started --> - <inceptionYear>2004</inceptionYear> - <package>fr.ifremer.isisfish</package> - <logo>http://www.codelutin.com/cl-images/mini-lutin.png</logo> - <shortDescription>Simulateur de pecherie complexe</shortDescription> - <description>Simulateur de pecherie complexe</description> - - <issueTrackingUrl>http://labs.libre-entreprise.org/tracker/?group_id=8</issueTrackingUrl> - - <!-- any mailing lists for the project --> - <mailingLists> - <mailingList> - <name>${pom.artifactId}-cvscommit</name> - <subscribe>http://lists.labs.libre-entreprise.org/mailman/listinfo/${pom.artifactId}-cvscommit</subscribe> - <unsubscribe>http://lists.labs.libre-entreprise.org/mailman/listinfo/${pom.artifactId}-cvscommit</unsubscribe> - <archive>http://lists.labs.libre-entreprise.org/pipermail/${pom.artifactId}-cvscommit/</archive> - </mailingList> - <mailingList> - <name>${pom.artifactId}-devel</name> - <subscribe>http://lists.labs.libre-entreprise.org/mailman/listinfo/${pom.artifactId}-devel</subscribe> - <unsubscribe>http://lists.labs.libre-entreprise.org/mailman/listinfo/${pom.artifactId}-devel</unsubscribe> - <archive>http://lists.labs.libre-entreprise.org/mailman/private/${pom.artifactId}-devel/</archive> - </mailingList> - <mailingList> - <name>${pom.artifactId}-user</name> - <subscribe>http://lists.labs.libre-entreprise.org/mailman/listinfo/${pom.artifactId}-user</subscribe> - <unsubscribe>http://lists.labs.libre-entreprise.org/mailman/listinfo/${pom.artifactId}-user</unsubscribe> - <archive>http://lists.labs.libre-entreprise.org/mailman/private/${pom.artifactId}-user/</archive> - </mailingList> - </mailingLists> - - <dependencies> - <dependency> - <groupId>commons-logging</groupId> - <artifactId>commons-logging</artifactId> - <version>1.0.4</version> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <dependency> - <groupId>log4j</groupId> - <artifactId>log4j</artifactId> - <version>1.2.8</version> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <dependency> - <groupId>lutinlib</groupId> - <artifactId>lutini18n</artifactId> - <version>0.18</version> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <dependency> - <groupId>lutinlib</groupId> - <artifactId>lutinutil</artifactId> - <version>0.19</version> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <dependency> - <groupId>lutinlib</groupId> - <artifactId>lutinxml</artifactId> - <version>0.7</version> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <dependency> - <groupId>lutinlib</groupId> - <artifactId>lutinwidget</artifactId> - <version>0.8</version> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <dependency> - <groupId>lutinlib</groupId> - <artifactId>lutinmatrix</artifactId> - <version>0.12</version> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <!-- The following dependency is a subdependency of lutinmatrix --> - <dependency> - <groupId>commons-primitives</groupId> - <artifactId>commons-primitives</artifactId> - <version>1.0</version> - </dependency> - <dependency> - <groupId>lutinlib</groupId> - <artifactId>lutingenerator</artifactId> - <version>0.30</version> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <dependency> - <groupId>lutinlib</groupId> - <artifactId>topia</artifactId> - <version>2.0.4</version> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <dependency> - <groupId>dom4j</groupId> - <artifactId>dom4j</artifactId> - <version>1.4</version> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <!-- Change this dependence if you change database --> - <dependency> - <groupId>h2</groupId> - <artifactId>h2</artifactId> - <jar>h2.jar</jar> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <dependency> - <groupId>hsqldb</groupId> - <artifactId>hsqldb</artifactId> - <version>1.8.0.1</version> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <dependency> - <groupId>mckoi</groupId> - <artifactId>mckoi</artifactId> - <version>1.0.2</version> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <dependency> - <groupId>postgresql</groupId> - <artifactId>postgresql</artifactId> - <version>7.4.1-jdbc3</version> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <dependency> - <groupId>derby</groupId> - <artifactId>derby</artifactId> - <version>10.1.1.0</version> - <url>http://db.apache.org/derby/</url> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <dependency> - <groupId>derby</groupId> - <artifactId>derbyLocale_fr</artifactId> - <version>10.1.1.0</version> - <url>http://db.apache.org/derby/</url> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <dependency> - <groupId>bsh</groupId> - <artifactId>bsh</artifactId> - <version>2.0b1</version> - <url>http://www.beanshell.org/</url> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <dependency> - <groupId>commons-collections</groupId> - <artifactId>commons-collections</artifactId> - <version>3.1</version> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <dependency> - <groupId>commons-beanutils</groupId> - <artifactId>commons-beanutils-core</artifactId> - <version>1.7.0</version> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <dependency> - <groupId>commons-lang</groupId> - <artifactId>commons-lang</artifactId> - <version>2.0</version> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <dependency> - <groupId>commons-dbcp</groupId> - <artifactId>commons-dbcp</artifactId> - <version>1.2.1</version> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <dependency> - <groupId>commons-pool</groupId> - <artifactId>commons-pool</artifactId> - <version>1.2</version> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <dependency> - <groupId>xmlrpc</groupId> - <artifactId>xmlrpc</artifactId> - <version>2.0</version> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <!-- pour SwiXat --> - <dependency> - <groupId>swixat</groupId> - <artifactId>swixat</artifactId> - <version>0.5.5</version> - <url>http://www.swixat.org</url> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <dependency> - <groupId>swixml</groupId> - <artifactId>swixml</artifactId> - <version>1.5-144-cl-20050912</version> - <url>http://www.swixml.org</url> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <dependency> - <groupId>nachocalendar</groupId> - <artifactId>nachocalendar</artifactId> - <version>0.22</version> - <url>http://nachocalendar.sourceforge.net/</url> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <dependency> - <groupId>l2fprod</groupId> - <artifactId>l2fprod-common-sheet</artifactId> - <version>0.2-dev</version> - <url>http://common.l2fprod.com</url> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <dependency> - <groupId>jdom</groupId> - <artifactId>jdom</artifactId> - <version>1.0</version> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <dependency> - <groupId>springframework</groupId> - <artifactId>spring-core</artifactId> - <version>1.1.5</version> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <dependency> - <groupId>commons-jxpath</groupId> - <artifactId>commons-jxpath</artifactId> - <version>1.2</version> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <dependency> - <groupId>flexdock</groupId> - <artifactId>flexdock</artifactId> - <version>0.4.0</version> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - - - <dependency> - <groupId>openmap</groupId> - <artifactId>openmap</artifactId> - <version>4.6</version> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - - - <!-- CVS connexion par SSH --> - <dependency> - <groupId>sshtools</groupId> - <artifactId>j2ssh-common</artifactId> - <version>0.2.2</version> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <dependency> - <groupId>sshtools</groupId> - <artifactId>j2ssh-core</artifactId> - <version>0.2.2</version> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <!-- lib cvs de netbean --> - <dependency> - <groupId>netbeans</groupId> - <artifactId>cvsclient</artifactId> - <version>4.0</version> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <!-- Hibernate begin--> - <dependency> - <groupId>hibernate</groupId> - <artifactId>hibernate</artifactId> - <version>3.1-patchevent</version> - <url>http://www.hibernate.org</url> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <dependency> - <groupId>antlr</groupId> - <artifactId>antlr</artifactId> - <version>2.7.2</version> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <dependency> - <groupId>asm</groupId> - <artifactId>asm</artifactId> - <jar>asm.jar</jar> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <dependency> - <groupId>asm</groupId> - <artifactId>asm-attrs</artifactId> - <jar>asm-attrs.jar</jar> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <dependency> - <groupId>cglib</groupId> - <artifactId>cglib</artifactId> - <version>2.1_3</version> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <dependency> - <groupId>ehcache</groupId> - <artifactId>ehcache</artifactId> - <version>1.1</version> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <dependency> - <groupId>jta</groupId> - <artifactId>jta</artifactId> - <version>1.0.1b</version> - <properties> - <jar.manifest.classpath>true</jar.manifest.classpath> - </properties> - </dependency> - <!-- Hibernate end--> - </dependencies> - -<!-- - <reports> - <report>maven-changelog-plugin</report> - <report>maven-license-plugin</report> - </reports> ---> - -</project> -
participants (1)
-
bpoussin@users.labs.libre-entreprise.org