You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by he...@apache.org on 2018/09/03 15:48:20 UTC

[1/2] brooklyn-server git commit: add a profile to allow downstream projects not to deploy brooklyn projects

Repository: brooklyn-server
Updated Branches:
  refs/heads/master a2929aab2 -> 029c7e830


add a profile to allow downstream projects not to deploy brooklyn projects

useful if they do `mvn clean deploy` and rebuild brooklyn projects, as they shouldn't be attempting to deploy brooklyn projects.
(they might rebuild eg the ui if they are whitelabelling.  the alternative is that they _do_ deploy them, but
specify alternative repos via the command line or a .mvn/maven.config)


Project: http://git-wip-us.apache.org/repos/asf/brooklyn-server/repo
Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-server/commit/82106bab
Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-server/tree/82106bab
Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-server/diff/82106bab

Branch: refs/heads/master
Commit: 82106babb0d42d83dc9037433c011af46db60098
Parents: a2929aa
Author: Alex Heneveld <al...@cloudsoftcorp.com>
Authored: Mon Sep 3 16:37:42 2018 +0100
Committer: Alex Heneveld <al...@cloudsoftcorp.com>
Committed: Mon Sep 3 16:37:42 2018 +0100

----------------------------------------------------------------------
 parent/pom.xml | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/82106bab/parent/pom.xml
----------------------------------------------------------------------
diff --git a/parent/pom.xml b/parent/pom.xml
index 048bc98..cf6e105 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -1766,5 +1766,19 @@
               </pluginManagement>
             </build>
         </profile>
+        <profile>
+            <id>skipBrooklynDeploy</id>
+            <!-- allow downstream projects that compile brooklyn to specify not to attempt to deploy it to apache's maven repo -->
+            <build>
+                <plugins>
+                    <plugin>
+                        <artifactId>maven-deploy-plugin</artifactId>
+                        <configuration>
+                            <skip>true</skip>
+                        </configuration>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
     </profiles>
 </project>


[2/2] brooklyn-server git commit: This closes #983

Posted by he...@apache.org.
This closes #983


Project: http://git-wip-us.apache.org/repos/asf/brooklyn-server/repo
Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-server/commit/029c7e83
Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-server/tree/029c7e83
Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-server/diff/029c7e83

Branch: refs/heads/master
Commit: 029c7e83042bf73d08279a325f52759825d92371
Parents: a2929aa 82106ba
Author: Alex Heneveld <al...@cloudsoftcorp.com>
Authored: Mon Sep 3 16:48:10 2018 +0100
Committer: Alex Heneveld <al...@cloudsoftcorp.com>
Committed: Mon Sep 3 16:48:10 2018 +0100

----------------------------------------------------------------------
 parent/pom.xml | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
----------------------------------------------------------------------