Author: tchemit Date: 2013-12-09 22:38:13 +0100 (Mon, 09 Dec 2013) New Revision: 1451 Url: http://forge.codelutin.com/projects/tutti/repository/revisions/1451 Log: fix build before release Modified: birt-runtime/trunk/pom.xml Modified: birt-runtime/trunk/pom.xml =================================================================== --- birt-runtime/trunk/pom.xml 2013-12-09 21:31:39 UTC (rev 1450) +++ birt-runtime/trunk/pom.xml 2013-12-09 21:38:13 UTC (rev 1451) @@ -33,7 +33,7 @@ <groupId>org.eclipse.birt.runtime</groupId> <artifactId>org.eclipse.birt.runtime</artifactId> - <version>4.3.1-1</version> + <version>4.3.1-1-SNAPSHOT</version> <name>Birt runtime (repackage by Code Lutin)</name> <description> @@ -383,6 +383,32 @@ </executions> </plugin> + <!-- do not install --> + <plugin> + <artifactId>maven-install-plugin</artifactId> + <executions> + <execution> + <id>default-install</id> + <configuration> + <skip>true</skip> + </configuration> + </execution> + </executions> + </plugin> + + <!-- do not deploy --> + <plugin> + <artifactId>maven-deploy-plugin</artifactId> + <executions> + <execution> + <id>default-deploy</id> + <configuration> + <skip>true</skip> + </configuration> + </execution> + </executions> + </plugin> + </plugins> </pluginManagement> </build>
participants (1)
-
tchemit@users.forge.codelutin.com