Author: tchemit Date: 2009-01-13 16:51:24 +0000 (Tue, 13 Jan 2009) New Revision: 1737 Removed: isis-fish/trunk/src/test/java/fr/ifremer/isisfish/ui/TestJaxx.java Modified: isis-fish/trunk/changelog.txt isis-fish/trunk/pom.xml Log: passage en lutinproject 3.3 (+ suppression d'un test Jaxx) Modified: isis-fish/trunk/changelog.txt =================================================================== --- isis-fish/trunk/changelog.txt 2009-01-13 16:44:36 UTC (rev 1736) +++ isis-fish/trunk/changelog.txt 2009-01-13 16:51:24 UTC (rev 1737) @@ -1,6 +1,6 @@ isis-fish (3.2.0.x) xxx - * switch to lutinproject 3.2 + * switch to lutinproject 3.3 * switch to topia-service 1.0.1 * switch to topia-persistence 2.1.1 * remove tools.jar (now isis need JDK !!!) Modified: isis-fish/trunk/pom.xml =================================================================== --- isis-fish/trunk/pom.xml 2009-01-13 16:44:36 UTC (rev 1736) +++ isis-fish/trunk/pom.xml 2009-01-13 16:51:24 UTC (rev 1737) @@ -11,7 +11,7 @@ <parent> <groupId>org.codelutin</groupId> <artifactId>lutinproject</artifactId> - <version>3.2</version> + <version>3.3</version> </parent> <groupId>ifremer</groupId> @@ -73,13 +73,6 @@ <scope>compile</scope> </dependency> - <dependency> - <groupId>org.codelutin.jaxx</groupId> - <artifactId>jaxx-compiler-api</artifactId> - <version>${jaxx.version}</version> - <scope>test</scope> - </dependency> - <!--Commons--> <dependency> <groupId>commons-jxpath</groupId> @@ -342,6 +335,10 @@ <!-- for the moment skip tests --> <maven.test.skip>true</maven.test.skip> + <!-- FIXE should at leaste be this !--> + <!-- Ignore failure test for now --> + <!--maven.test.testFailureIgnore>true</maven.test.testFailureIgnore--> + <!-- jnlp --> <keystorepath>../../../CodeLutinKeystore</keystorepath> <keystorealias>CodeLutin</keystorealias> @@ -567,7 +564,7 @@ <execution> <phase>verify</phase> <goals> - <goal>attached</goal> + <goal>inline</goal> </goals> </execution> </executions> Deleted: isis-fish/trunk/src/test/java/fr/ifremer/isisfish/ui/TestJaxx.java =================================================================== --- isis-fish/trunk/src/test/java/fr/ifremer/isisfish/ui/TestJaxx.java 2009-01-13 16:44:36 UTC (rev 1736) +++ isis-fish/trunk/src/test/java/fr/ifremer/isisfish/ui/TestJaxx.java 2009-01-13 16:51:24 UTC (rev 1737) @@ -1,38 +0,0 @@ -package fr.ifremer.isisfish.ui; - -import jaxx.reflect.ClassDescriptor; -import jaxx.reflect.JavaFileParser; -import org.junit.Assert; -import org.junit.Test; - -import java.io.File; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.Reader; -import java.net.URL; - -/** @author chemit */ -public class TestJaxx { - - @Test - public void testParseEntity() throws Exception { - URL javaSource = new File("target/generated-sources/java/fr/ifremer/isisfish/entities/Cell.java").toURI().toURL(); - - InputStream in = javaSource.openStream(); - Reader reader = new InputStreamReader(in, "utf-8"); - ClassDescriptor result = JavaFileParser.parseJavaFile(javaSource.toString(), reader, getClass().getClassLoader()); - reader.close(); - Assert.assertNotNull(result); - } - - @Test - public void testParseEntityImpl() throws Exception { - URL javaSource = new File("src/main/java/fr/ifremer/isisfish/entities/CellImpl.java").toURI().toURL(); - - InputStream in = javaSource.openStream(); - Reader reader = new InputStreamReader(in, "utf-8"); - ClassDescriptor result = JavaFileParser.parseJavaFile(javaSource.toString(), reader, getClass().getClassLoader()); - reader.close(); - Assert.assertNotNull(result); - } -}