Author: chatellier Date: 2008-09-23 08:47:08 +0000 (Tue, 23 Sep 2008) New Revision: 85 Removed: lutinmatrix/trunk/build.sh Modified: lutinmatrix/trunk/ lutinmatrix/trunk/changelog lutinmatrix/trunk/pom.xml lutinmatrix/trunk/src/test/java/org/codelutin/math/matrix/MatrixEncoderDecoderTest.java Log: Comment lutinxml dependent tests Remove unnecessary files Update pom (super-pom, version) Property changes on: lutinmatrix/trunk ___________________________________________________________________ Name: svn:ignore - target + target .settings .classpath .project Deleted: lutinmatrix/trunk/build.sh =================================================================== --- lutinmatrix/trunk/build.sh 2008-09-23 08:28:52 UTC (rev 84) +++ lutinmatrix/trunk/build.sh 2008-09-23 08:47:08 UTC (rev 85) @@ -1,5 +0,0 @@ -#!/bin/bash - -rep=`dirname $0` - -(cd $rep && maven 2>&1 | sed "s/target\/src-build/src/g") Modified: lutinmatrix/trunk/changelog =================================================================== --- lutinmatrix/trunk/changelog 2008-09-23 08:28:52 UTC (rev 84) +++ lutinmatrix/trunk/changelog 2008-09-23 08:47:08 UTC (rev 85) @@ -1,3 +1,8 @@ +ver-1.1 + * Comment lutinxml dependent tests + * Remove unnecessary files + * Update pom (super-pom, version) + ver-0-17 * suppress MatrixNDXMLConverter.java and MatrixXMLDelegator.java * add reduceDims method to reduce on specific dimension Modified: lutinmatrix/trunk/pom.xml =================================================================== --- lutinmatrix/trunk/pom.xml 2008-09-23 08:28:52 UTC (rev 84) +++ lutinmatrix/trunk/pom.xml 2008-09-23 08:47:08 UTC (rev 85) @@ -8,11 +8,11 @@ <parent> <groupId>org.codelutin</groupId> <artifactId>lutinproject</artifactId> - <version>2.4</version> + <version>3.0</version> </parent> <artifactId>lutinmatrix</artifactId> - <version>1.0</version> + <version>1.1-SNAPSHOT</version> <name>lutinmatrix</name> <packaging>jar</packaging> <description>Librairie de matrice multi-dimensions.</description> @@ -30,14 +30,19 @@ <maven.test.testFailureIgnore>true</maven.test.testFailureIgnore> </properties> + <!--Source control management--> <scm> - <url>${maven.scm.url}</url> + <!-- BE WARE, this value will be overriden by inheritance --> + <connection>scm:svn:svn://anonymous@${labs.host}/svnroot/${labs.project}/${pom.artifactId}/trunk</connection> + + <!-- BE WARE, this value will be overriden by inheritance --> + <developerConnection>scm:svn:svn+ssh://${username}@${labs.host}/svnroot/${labs.project}/${pom.artifactId}/trunk</developerConnection> </scm> <build> <plugins> - <!-- i18n --> + <!-- i18n <plugin> <groupId>lutinplugin</groupId> <artifactId>maven-i18n-plugin</artifactId> @@ -49,9 +54,9 @@ </goals> </execution> </executions> - </plugin> + </plugin>--> - <!-- jrst --> + <!-- jrst <plugin> <groupId>lutinplugin</groupId> <artifactId>maven-jrst-plugin</artifactId> @@ -63,7 +68,7 @@ <source>1.6</source> <target>1.6</target> </configuration> - </plugin> + </plugin>--> </plugins> </build> @@ -73,7 +78,7 @@ <dependency> <groupId>org.codelutin</groupId> <artifactId>lutinutil</artifactId> - <version>[0.29,]</version> + <version>0.30</version> <scope>compile</scope> </dependency> <!-- lutinxml est deprecie @@ -95,14 +100,14 @@ <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> - <version>[2.1,]</version> + <version>2.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>commons-primitives</groupId> <artifactId>commons-primitives</artifactId> - <version>[1.0,]</version> + <version>1.0</version> <scope>compile</scope> </dependency> </dependencies> Modified: lutinmatrix/trunk/src/test/java/org/codelutin/math/matrix/MatrixEncoderDecoderTest.java =================================================================== --- lutinmatrix/trunk/src/test/java/org/codelutin/math/matrix/MatrixEncoderDecoderTest.java 2008-09-23 08:28:52 UTC (rev 84) +++ lutinmatrix/trunk/src/test/java/org/codelutin/math/matrix/MatrixEncoderDecoderTest.java 2008-09-23 08:47:08 UTC (rev 85) @@ -31,15 +31,20 @@ package org.codelutin.math.matrix; -import java.util.Arrays; -import java.util.Collections; -import java.util.List; - import junit.framework.TestCase; +/** + * FIXME comment test since lutinxml is not used any. + * + * @author poussin + * @version $Revision$ + * + * Last update : $Date$ + * By : $Author$ + */ public class MatrixEncoderDecoderTest extends TestCase { // MatrixEncoderDecoderTest - public MatrixFactory getFactory() throws Exception { + /*public MatrixFactory getFactory() throws Exception { return MatrixFactory.getInstance(); } @@ -74,7 +79,7 @@ mat = getFactory().create("Ma mat", new List[]{s1, s2, s3}, new String[]{"dim abc", "dim efg", "dim klm"}); mat.setSemantics(1, Collections.nCopies(3, null)); subtestEncoderDecoder(mat); - } + }*/ } // MatrixEncoderDecoderTest