comments on copying BOM from cli project to dist
Project: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/commit/622e03fb Tree: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/tree/622e03fb Diff: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/diff/622e03fb Branch: refs/heads/master Commit: 622e03fb53f9dd747110ef023fe36d684fe85e98 Parents: b77ef94 Author: Alex Heneveld <[email protected]> Authored: Tue Jun 23 23:11:44 2015 -0700 Committer: Alex Heneveld <[email protected]> Committed: Wed Jun 24 00:40:34 2015 -0700 ---------------------------------------------------------------------- usage/cli/pom.xml | 3 +++ usage/dist/pom.xml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/622e03fb/usage/cli/pom.xml ---------------------------------------------------------------------- diff --git a/usage/cli/pom.xml b/usage/cli/pom.xml index 91894f1..07d65ab 100644 --- a/usage/cli/pom.xml +++ b/usage/cli/pom.xml @@ -135,6 +135,9 @@ </plugin> <plugin> + <!-- we publish the BOM in case anyone wants to access it directly. + the primary consumer to begin with is the dist, + though it could use use unpack goal with an includes filter. --> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/622e03fb/usage/dist/pom.xml ---------------------------------------------------------------------- diff --git a/usage/dist/pom.xml b/usage/dist/pom.xml index f884372..f4c863c 100644 --- a/usage/dist/pom.xml +++ b/usage/dist/pom.xml @@ -64,7 +64,7 @@ <plugins> <plugin> <artifactId>maven-dependency-plugin</artifactId> - <!-- copy the config file from the CLI project --> + <!-- copy the config file from the CLI project (could instead use unpack goal with an includes filter) --> <executions> <execution> <id>copy</id>
