Repository: incubator-brooklyn Updated Branches: refs/heads/master be9ca632c -> d01554af2
Make sure jsgui is before launcher in the build order Launcher needs jsgui dependency during build time only, shouldn't be used as a transitive dependency. Project: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/commit/d0f89e4c Tree: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/tree/d0f89e4c Diff: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/diff/d0f89e4c Branch: refs/heads/master Commit: d0f89e4ccdd3f916666e29056132a54a20dcb7e4 Parents: d7ac3ac Author: Svetoslav Neykov <[email protected]> Authored: Fri Jul 17 16:17:59 2015 +0300 Committer: Svetoslav Neykov <[email protected]> Committed: Fri Jul 17 17:30:10 2015 +0300 ---------------------------------------------------------------------- usage/launcher/pom.xml | 8 ++++++++ 1 file changed, 8 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/d0f89e4c/usage/launcher/pom.xml ---------------------------------------------------------------------- diff --git a/usage/launcher/pom.xml b/usage/launcher/pom.xml index 9da43e7..56cc880 100644 --- a/usage/launcher/pom.xml +++ b/usage/launcher/pom.xml @@ -77,6 +77,14 @@ <version>${project.version}</version> </dependency> <dependency> + <groupId>org.apache.brooklyn</groupId> + <artifactId>brooklyn-jsgui</artifactId> + <type>war</type> + <!-- Needed during build time only --> + <scope>provided</scope> + <version>${project.version}</version> + </dependency> + <dependency> <groupId>org.apache.felix</groupId> <artifactId>org.apache.felix.framework</artifactId> </dependency>
