Launcher without brooklyn.war
Project: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/commit/a36b57bf Tree: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/tree/a36b57bf Diff: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/diff/a36b57bf Branch: refs/heads/master Commit: a36b57bf4acaba16f7cec35cbf08614f96c86ce9 Parents: 4c6dfea Author: Svetoslav Neykov <[email protected]> Authored: Wed Jan 14 21:59:58 2015 +0200 Committer: Svetoslav Neykov <[email protected]> Committed: Wed Jan 14 21:59:58 2015 +0200 ---------------------------------------------------------------------- usage/launcher/pom.xml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/a36b57bf/usage/launcher/pom.xml ---------------------------------------------------------------------- diff --git a/usage/launcher/pom.xml b/usage/launcher/pom.xml index 16a5bbf..25f5268 100644 --- a/usage/launcher/pom.xml +++ b/usage/launcher/pom.xml @@ -260,6 +260,25 @@ <generateReports>false</generateReports> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <executions> + <execution> + <id>exclude-jsgui</id> + <phase>package</phase> + <goals> + <goal>jar</goal> + </goals> + <configuration> + <classifier>no-jsgui</classifier> + <excludes> + <exclude>brooklyn.war</exclude> + </excludes> + </configuration> + </execution> + </executions> + </plugin> </plugins> </build> </project>
