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