Repository: qpid-dispatch Updated Branches: refs/heads/master 25eea602b -> 1b50905b8
DISPATCH-410: suppress creation of the source-release.zip since the overall dispatch archive represents the release source Project: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/commit/07571617 Tree: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/tree/07571617 Diff: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/diff/07571617 Branch: refs/heads/master Commit: 07571617f151817ce9587524a15f469c8055f91b Parents: 25eea60 Author: Robert Gemmell <[email protected]> Authored: Tue Jun 28 11:50:44 2016 +0100 Committer: Robert Gemmell <[email protected]> Committed: Tue Jun 28 11:50:44 2016 +0100 ---------------------------------------------------------------------- console/hawtio/pom.xml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/07571617/console/hawtio/pom.xml ---------------------------------------------------------------------- diff --git a/console/hawtio/pom.xml b/console/hawtio/pom.xml index c79008f..6afade7 100644 --- a/console/hawtio/pom.xml +++ b/console/hawtio/pom.xml @@ -277,4 +277,32 @@ </plugins> </build> + + <profiles> + <!-- Profile to override the parent pom profile of the same name to + stop creation of a source-release.zip file here, as the overall + dispatch source release was generated separately already. --> + <profile> + <id>apache-release</id> + <build> + <plugins> + <plugin> + <artifactId>maven-assembly-plugin</artifactId> + <executions> + <execution> + <id>source-release-assembly</id> + <phase>package</phase> + <goals> + <goal>single</goal> + </goals> + <configuration> + <skipAssembly>true</skipAssembly> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + </profiles> </project> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
