r3895 - in branches/4.0.1: . src/main/java/fr/ifremer/isisfish src/main/resources
Author: echatellier Date: 2014-03-19 11:13:29 +0100 (Wed, 19 Mar 2014) New Revision: 3895 Url: http://forge.codelutin.com/projects/isis-fish/repository/revisions/3895 Log: fixes #4752: Suppression du code d'import des bases V2 Removed: branches/4.0.1/src/main/resources/v2xsl/ Modified: branches/4.0.1/pom.xml branches/4.0.1/src/main/java/fr/ifremer/isisfish/IsisFish.java Modified: branches/4.0.1/pom.xml =================================================================== --- branches/4.0.1/pom.xml 2014-03-19 10:10:07 UTC (rev 3894) +++ branches/4.0.1/pom.xml 2014-03-19 10:13:29 UTC (rev 3895) @@ -265,24 +265,6 @@ <scope>compile</scope> </dependency> - <!-- Utilisé lors de l'import xml v2 (entre autre) --> - <dependency> - <groupId>jaxen</groupId> - <artifactId>jaxen</artifactId> - <version>1.1.4</version> - <scope>runtime</scope> - <exclusions> - <exclusion> - <artifactId>xml-apis</artifactId> - <groupId>xml-apis</groupId> - </exclusion> - <exclusion> - <artifactId>xmlParserAPIs</artifactId> - <groupId>xerces</groupId> - </exclusion> - </exclusions> - </dependency> - <!-- Change this dependence if you change database --> <dependency> <groupId>com.h2database</groupId> Modified: branches/4.0.1/src/main/java/fr/ifremer/isisfish/IsisFish.java =================================================================== --- branches/4.0.1/src/main/java/fr/ifremer/isisfish/IsisFish.java 2014-03-19 10:10:07 UTC (rev 3894) +++ branches/4.0.1/src/main/java/fr/ifremer/isisfish/IsisFish.java 2014-03-19 10:13:29 UTC (rev 3895) @@ -655,9 +655,10 @@ // remove isis build directory try { FileUtils.deleteDirectory(IsisFish.config.getCompileDirectory()); - } catch (IOException e) { - // TODO Auto-generated catch block - e.printStackTrace(); + } catch (IOException ex) { + if (log.isErrorEnabled()) { + log.error("Can't clear build directory", ex); + } } ErrorHelper.showErrorDialog(null, _("isisfish.error.linkageerror.message"), cause);
participants (1)
-
echatellier@users.forge.codelutin.com