GitHub user neykov opened a pull request:

    https://github.com/apache/incubator-brooklyn/pull/430

    Standalone console dependency

    Wrap the console war in a standalone jar so it can easiliy be excluded from 
downstream projects (and overriden with custom build) without needing to 
customize the launcher.
    
    In a downstream project to use custom jsgui:
    
    ```
        <dependency>
          <groupId>io.apache.brooklyn</groupId>
          <artifactId>brooklyn-all</artifactId>
          <version>${brooklyn.version}</version>
          <exclusions>
            <exclusion>
              <artifactId>brooklyn-jsgui</artifactId>
              <groupId>org.apache.brooklyn</groupId>
            </exclusion>
          </exclusions>
        </dependency>
        <dependency>
          <groupId>io.downstream</groupId>
          <artifactId>custom-jsgui</artifactId>
          <version>0.1.0-SNAPSHOT</version>
          <classifier>war</classifier>
          <exclusions>
            <exclusion>
              <artifactId>brooklyn-jsgui</artifactId>
              <groupId>org.apache.brooklyn</groupId>
            </exclusion>
          </exclusions>
        </dependency>
    ```

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/neykov/incubator-brooklyn 
standalone-console-dep

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/incubator-brooklyn/pull/430.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #430
    
----
commit 587ceb4aa33dbe70ebdc4ab259d12c2e60994f2c
Author: Svetoslav Neykov <[email protected]>
Date:   2014-12-31T09:29:45Z

    Standalone console dependency
    
    Wrap the console war in a standalone jar so it can easiliy be excluded from 
downstream projects (and overriden with custom build) without needing to 
customize the launcher.

----


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to