Author: tchemit Date: 2009-11-02 01:39:42 +0100 (Mon, 02 Nov 2009) New Revision: 631 Modified: trunk/pom.xml Log: fix release configuration (news title can not be so long...) Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2009-11-02 00:05:01 UTC (rev 630) +++ trunk/pom.xml 2009-11-02 00:39:42 UTC (rev 631) @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> @@ -1065,7 +1066,7 @@ <plugin> <groupId>org.nuiton</groupId> <artifactId>maven-helper-plugin</artifactId> - <version>1.0.3</version> + <version>1.1.0</version> <executions> <execution> <id>get-redmine-login</id> @@ -1098,7 +1099,7 @@ </goals> <phase>install</phase> <configuration> - <extraFiles /> + <extraFiles/> <descriptionFile>${redmine.collectedFiles}</descriptionFile> </configuration> </execution> @@ -1166,13 +1167,14 @@ <plugin> <groupId>org.nuiton</groupId> <artifactId>maven-helper-plugin</artifactId> + <version>1.1.0</version> <executions> <execution> <id>get-redmine-login</id> <goals> <goal>share-server-secret</goal> </goals> - <phase>initialize</phase> + <phase>validate</phase> <configuration> <serverId>redmine-${platform}</serverId> <passwordOut>redmine.password</passwordOut> @@ -1192,7 +1194,7 @@ <!-- for a multi-module just run on root project --> <runOnce>true</runOnce> - <emailTitle>[ANNOUNCEMENT] - ${project.name} ${project.version} released</emailTitle> + <emailTitle>[ANNOUNCEMENT] - ${project.artifactId} ${project.version} released</emailTitle> <emailContentFile>target/generated-sources/announcement/release-email-announcement.vm </emailContentFile> <mailSender> @@ -1242,7 +1244,7 @@ <newsContentFile>target/generated-sources/announcement/release-news-announcement.vm </newsContentFile> <newsSummary>${project.description}</newsSummary> - <newsTitle>${project.name} ${project.version} released</newsTitle> + <newsTitle>${project.artifactId} ${project.version} released</newsTitle> </configuration> </plugin>