Author: tchemit Date: 2011-08-18 16:16:01 +0200 (Thu, 18 Aug 2011) New Revision: 225 Url: http://nuiton.org/repositories/revision/scmwebeditor/225 Log: fix pom before release Modified: trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2011-08-18 13:51:09 UTC (rev 224) +++ trunk/pom.xml 2011-08-18 14:16:01 UTC (rev 225) @@ -185,6 +185,16 @@ <role>Developer</role> </roles> </developer> + <developer> + <name>Kevin Cardineaud</name> + <id>kcardineaud</id> + <email>cardineaud@codelutin.com</email> + <organization>CodeLutin</organization> + <timezone>+2</timezone> + <roles> + <role>Developer</role> + </roles> + </developer> </developers> <organization> @@ -210,7 +220,7 @@ <struts2jqueryVersion>3.1.0</struts2jqueryVersion> <nuitonI18nVersion>2.4</nuitonI18nVersion> <nuitonUtilsVersion>2.2</nuitonUtilsVersion> - <jrstPluginVersion>1.4-SNAPSHOT</jrstPluginVersion> + <jrstPluginVersion>1.4</jrstPluginVersion> <!-- <scmwebeditorUrl>http://localhost:8080/scmwebeditor/checkout.action</scmwebeditorUrl> --> @@ -251,24 +261,19 @@ <dependency> <groupId>org.nuiton.jrst</groupId> <artifactId>doxia-module-jrst</artifactId> - <version>1.4-SNAPSHOT</version> + <version>${jrstPluginVersion}</version> </dependency> </dependencies> </plugin> - - + + <plugin> - - <groupId>org.nuiton.i18n</groupId> - <artifactId>maven-i18n-plugin</artifactId> - <version>${nuitonI18nVersion}</version> - + <groupId>org.nuiton.i18n</groupId> + <artifactId>maven-i18n-plugin</artifactId> + <version>${nuitonI18nVersion}</version> + </plugin> - - - - </plugins> </pluginManagement> @@ -284,89 +289,45 @@ <execution> <goals> <goal>parserJava</goal> - </goals> - </execution> - <execution> - <id>scan-jsp-sources</id> - <goals> - <goal>parserJsp</goal> - </goals> - <configuration> - <userRulesFiles> - <file>${basedir}/src/main/i18n/jsp.rules</file> - </userRulesFiles> - <namespaces> - <s>http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd</s> - <sx>http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd - </sx> - <sj>http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd - </sj> - <jsp>http://java.sun.com/JSP/Page</jsp> - </namespaces> - </configuration> - </execution> - <execution> - <id>gen-and-make-bundle</id> - <goals> <goal>gen</goal> <goal>bundle</goal> </goals> </execution> </executions> - + </plugin> - - - <plugin> - <groupId>org.mortbay.jetty</groupId> - <artifactId>jetty-maven-plugin</artifactId> - <configuration> - <webAppConfig> - <contextPath>/${project.artifactId}</contextPath> - </webAppConfig> - -<!-- <connectors> - <connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector"> - <port>10000</port> - </connector> - </connectors> --> - </configuration> - </plugin> + <plugin> + <groupId>org.mortbay.jetty</groupId> + <artifactId>jetty-maven-plugin</artifactId> + <configuration> + <webAppConfig> + <contextPath>/${project.artifactId}</contextPath> + </webAppConfig> + <!-- <connectors> + <connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector"> + <port>10000</port> + </connector> + </connectors> --> + </configuration> + </plugin> + + </plugins> </build> <!-- Source control management. --> <scm> - <connection>scm:svn:http://svn.nuiton.org/svn/scmwebeditor/trunk + <connection> + scm:svn:http://svn.nuiton.org/svn/scmwebeditor/trunk </connection> - <developerConnection>scm:svn:http://svn.nuiton.org/svn/scmwebeditor/trunk + <developerConnection> + scm:svn:http://svn.nuiton.org/svn/scmwebeditor/trunk </developerConnection> <url>http://www.nuiton.org/repositories/browse/scmwebeditor/trunk</url> </scm> - <profiles> - - <!-- prepare assembly at release time --> - <profile> - <id>release-assembly-profile</id> - <activation> - <property> - <name>performRelease</name> - <value>true</value> - </property> - </activation> - <build> - - <plugins> - - - </plugins> - </build> - </profile> - </profiles> - </project>