r181 - trunk/maven-jrst-plugin/src/java/org/codelutin/jrst/plugin
Author: tchemit Date: 2008-08-05 12:44:49 +0000 (Tue, 05 Aug 2008) New Revision: 181 Modified: trunk/maven-jrst-plugin/src/java/org/codelutin/jrst/plugin/JRstPlugin.java Log: ne compile pas chez moi sans ?\195?\167a! Modified: trunk/maven-jrst-plugin/src/java/org/codelutin/jrst/plugin/JRstPlugin.java =================================================================== --- trunk/maven-jrst-plugin/src/java/org/codelutin/jrst/plugin/JRstPlugin.java 2008-08-05 12:39:27 UTC (rev 180) +++ trunk/maven-jrst-plugin/src/java/org/codelutin/jrst/plugin/JRstPlugin.java 2008-08-05 12:44:49 UTC (rev 181) @@ -213,7 +213,7 @@ false, "([/\\\\])" + defaultLocale + "([/\\\\])", "$1", true, - ".*[/\\\\]rst[/\\\\].*"); + new String[]{".*[/\\\\]rst[/\\\\].*"}); // copie des images du repertoire rst dans le build-site FileUtil.copyAndRenameRecursively( @@ -223,7 +223,7 @@ "([/\\\\])" + defaultLocale + "([/\\\\])rst([/\\\\])", "$1resources$2", false, - ".*[/\\\\]rst[/\\\\].*(\\.png|\\.jpeg|\\.jpg|\\.gif)$"); + new String[]{".*[/\\\\]rst[/\\\\].*(\\.png|\\.jpeg|\\.jpg|\\.gif)$"}); } else { // copie de tous les fichiers non rst FileUtil.copyAndRenameRecursively( @@ -233,7 +233,7 @@ "", "", true, - ".*[/\\\\]rst[/\\\\].*"); + new String[]{".*[/\\\\]rst[/\\\\].*"}); // copie des images du repertoire rst dans le build-site FileUtil.copyAndRenameRecursively( @@ -243,7 +243,7 @@ "([/\\\\])rst([/\\\\])", "$1resources$2", false, - ".*[/\\\\]rst[/\\\\].*(\\.png|\\.jpeg|\\.jpg|\\.gif)$"); + new String[]{".*[/\\\\]rst[/\\\\].*(\\.png|\\.jpeg|\\.jpg|\\.gif)$"}); } } catch (IOException eee) { getLog().error(eee);
participants (1)
-
tchemit@users.labs.libre-entreprise.org