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 2015/04/21 22:50:27 UTC

[06/19] incubator-brooklyn git commit: Remove brooklyn-all-*-with-dependencies.jar

Remove brooklyn-all-*-with-dependencies.jar

See discussion:
https://mail-archives.apache.org/mod_mbox/incubator-brooklyn-dev/201504.mbox/%3CCABQFKi0_pYS%2BLxZFjapKwyZ0Ug1Hg03nhX-yo1mAryBjroR4Nw%40mail.gmail.com%3E


Project: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/commit/6de3d74a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/tree/6de3d74a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/diff/6de3d74a

Branch: refs/heads/master
Commit: 6de3d74abeb3785a3ff4f7da71e458adbaf492c0
Parents: d02ab99
Author: Richard Downer <ri...@apache.org>
Authored: Fri Apr 17 09:44:58 2015 +0100
Committer: Richard Downer <ri...@apache.org>
Committed: Fri Apr 17 09:44:58 2015 +0100

----------------------------------------------------------------------
 usage/all/pom.xml           | 46 +---------------------------------------
 usage/all/start-mgmt-web.sh | 43 -------------------------------------
 2 files changed, 1 insertion(+), 88 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/6de3d74a/usage/all/pom.xml
----------------------------------------------------------------------
diff --git a/usage/all/pom.xml b/usage/all/pom.xml
index 846c803..bc0dd00 100644
--- a/usage/all/pom.xml
+++ b/usage/all/pom.xml
@@ -25,8 +25,7 @@
 
     <name>Brooklyn All Things</name>
     <description>
-        All Brooklyn entities and policies including web-console and CLI launcher
-        packaged as a single Jar with dependencies for easy usage
+        A meta-dependency for all the major Brooklyn modules.
     </description>
 
     <parent>
@@ -109,47 +108,4 @@
         </dependency>
     </dependencies>
 
-    <profiles>
-        <profile>
-            <activation>
-                <property>
-                    <name>!skipShade</name>
-                </property>
-            </activation>
-            <id>shade</id>
-            <build>
-                <plugins>
-                    <plugin>
-                        <artifactId>maven-shade-plugin</artifactId>
-                        <configuration>
-                            <outputFile>${project.build.directory}/${project.artifactId}-${project.version}-with-dependencies.jar</outputFile>
-                        </configuration>
-                    </plugin>
-                    <plugin>
-                        <groupId>org.codehaus.mojo</groupId>
-                        <artifactId>build-helper-maven-plugin</artifactId>
-                        <executions>
-                            <execution>
-                                <id>attach-distribution</id>
-                                <phase>package</phase>
-                                <goals>
-                                    <goal>attach-artifact</goal>
-                                </goals>
-                                <configuration>
-                                    <artifacts>
-                                        <artifact>
-                                            <file>${project.build.directory}/${project.artifactId}-${project.version}-with-dependencies.jar</file>
-                                            <type>jar</type>
-                                            <classifier>with-dependencies</classifier>
-                                        </artifact>
-                                    </artifacts>
-                                </configuration>
-                            </execution>
-                        </executions>
-                    </plugin>
-                </plugins>
-            </build>
-        </profile>
-    </profiles>
-
 </project>

http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/6de3d74a/usage/all/start-mgmt-web.sh
----------------------------------------------------------------------
diff --git a/usage/all/start-mgmt-web.sh b/usage/all/start-mgmt-web.sh
deleted file mode 100755
index 53505d9..0000000
--- a/usage/all/start-mgmt-web.sh
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/usr/bin/env bash
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-#  http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
-#
-# Brooklyn Management
-#
-# Run this, then you should see the Brooklyn mgmt webapp at localhost:8081/
-#
-#set -x # debug
-
-CLASS=brooklyn.launcher.Main
-
-ROOT=$(cd $(dirname $0) && pwd)
-cd $ROOT
-
-JAVA_OPTS="-Xms256m -Xmx1g -XX:MaxPermSize=256m"
-export CP=`ls ./target/brooklyn-all-*-with-dependencies.jar | awk '{print $1}'`
-
-if [ -z "$CP" ]; then
-	echo "Cannot find the with-dependencies jar"
-	exit 1
-fi
-
-echo running Brooklyn Web Console using $CLASS from $CP at $LOCATIONS
-
-echo java $JAVA_OPTS -cp "$CP" $CLASS $LOCATIONS
-java $JAVA_OPTS -cp "$CP" $CLASS $LOCATIONS