Move karaf distribution to brooklyn-dist.
Project: http://git-wip-us.apache.org/repos/asf/brooklyn-server/repo Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-server/commit/a2f6cb5f Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-server/tree/a2f6cb5f Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-server/diff/a2f6cb5f Branch: refs/heads/master Commit: a2f6cb5f442db426ba4f2acf752db56cb980cb90 Parents: f2f6357 Author: Geoff Macartney <[email protected]> Authored: Fri Jul 22 12:34:08 2016 +0100 Committer: Geoff Macartney <[email protected]> Committed: Tue Jul 26 23:10:52 2016 +0100 ---------------------------------------------------------------------- karaf/apache-brooklyn/pom.xml | 138 ------- .../filtered-resources/etc/branding.properties | 35 -- .../src/main/resources/etc/custom.properties | 120 ------ .../src/main/resources/etc/default.catalog.bom | 370 ------------------ ....apache.brooklyn.core.catalog.bomscanner.cfg | 27 -- .../etc/org.apache.brooklyn.osgilauncher.cfg | 65 ---- .../resources/etc/org.ops4j.pax.logging.cfg | 95 ----- .../etc/org.ops4j.pax.url.mvn.repositories.cfg | 20 - .../main/resources/etc/org.ops4j.pax.web.cfg | 19 - .../src/main/resources/etc/system.properties | 133 ------- karaf/features/src/main/feature/feature.xml | 66 ---- .../init/src/main/resources/catalog-classes.bom | 379 ------------------- karaf/itest/pom.xml | 259 ------------- .../java/org/apache/brooklyn/AssemblyTest.java | 87 ----- .../org/apache/brooklyn/KarafTestUtils.java | 84 ---- .../catalog/internal/CatalogBomScannerTest.java | 176 --------- .../catalog/internal/DefaultBomLoadTest.java | 77 ---- .../launcher/osgi/OsgiLauncherTest.java | 99 ----- .../rest/BrooklynRestApiLauncherTest.java | 84 ---- .../security/CustomSecurityProvider.java | 33 -- .../security/CustomSecurityProviderTest.java | 156 -------- .../security/StockSecurityProviderTest.java | 191 ---------- .../apache/brooklyn/test/IntegrationTest.java | 26 -- .../src/test/resources/custom-security-bp.xml | 40 -- karaf/itest/src/test/resources/exam.properties | 21 - karaf/itest/src/test/resources/logback.xml | 43 --- karaf/pom.xml | 4 +- 27 files changed, 1 insertion(+), 2846 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/a2f6cb5f/karaf/apache-brooklyn/pom.xml ---------------------------------------------------------------------- diff --git a/karaf/apache-brooklyn/pom.xml b/karaf/apache-brooklyn/pom.xml deleted file mode 100755 index 16f1509..0000000 --- a/karaf/apache-brooklyn/pom.xml +++ /dev/null @@ -1,138 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- - 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. ---> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> - - <modelVersion>4.0.0</modelVersion> - - <artifactId>apache-brooklyn</artifactId> - <packaging>karaf-assembly</packaging> - <name>Brooklyn Karaf Distro</name> - - <parent> - <groupId>org.apache.brooklyn</groupId> - <artifactId>brooklyn-karaf</artifactId> - <version>0.10.0-SNAPSHOT</version> <!-- BROOKLYN_VERSION --> - <relativePath>../pom.xml</relativePath> - </parent> - - <dependencies> - <dependency> - <groupId>org.apache.karaf.features</groupId> - <artifactId>framework</artifactId> - <version>${karaf.version}</version> - <type>kar</type> - </dependency> - - <dependency> - <groupId>org.apache.karaf.features</groupId> - <artifactId>standard</artifactId> - <classifier>features</classifier> - <version>${karaf.version}</version> - <type>xml</type> - <scope>runtime</scope> - </dependency> - - <dependency> - <groupId>org.apache.karaf.features</groupId> - <artifactId>enterprise</artifactId> - <classifier>features</classifier> - <version>${karaf.version}</version> - <type>xml</type> - <scope>runtime</scope> - </dependency> - - <dependency> - <groupId>org.apache.brooklyn</groupId> - <artifactId>brooklyn-features</artifactId> - <version>${project.version}</version> - <type>xml</type> - <classifier>features</classifier> - <scope>runtime</scope> - </dependency> - - </dependencies> - - <build> - <resources> - <resource> - <directory>src/main/resources</directory> - <filtering>false</filtering> - <includes> - <include>**/*</include> - </includes> - </resource> - <resource> - <directory>src/main/filtered-resources</directory> - <filtering>true</filtering> - <includes> - <include>**/*</include> - </includes> - </resource> - </resources> - - <plugins> - <plugin> - <groupId>org.apache.rat</groupId> - <artifactId>apache-rat-plugin</artifactId> - <configuration> - <excludes combine.children="append"> - <exclude>**/*.bom</exclude> - </excludes> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.karaf.tooling</groupId> - <artifactId>karaf-maven-plugin</artifactId> - <version>${karaf.version}</version> - <extensions>true</extensions> - <configuration> - <bootFeatures> - <bootFeature>aries-blueprint</bootFeature> - <bootFeature>bundle</bootFeature> - <bootFeature>config</bootFeature> - <bootFeature>deployer</bootFeature> - <bootFeature>diagnostic</bootFeature> - <bootFeature>feature</bootFeature> - <bootFeature>instance</bootFeature> - <bootFeature>jaas</bootFeature> - <bootFeature>kar</bootFeature> - <bootFeature>log</bootFeature> - <bootFeature>management</bootFeature> - <bootFeature>package</bootFeature> - <bootFeature>service</bootFeature> - <bootFeature>shell</bootFeature> - <bootFeature>shell-compat</bootFeature> - <bootFeature>ssh</bootFeature> - <bootFeature>system</bootFeature> - <bootFeature>wrap</bootFeature> - <!-- brooklyn features --> - <bootFeature>brooklyn-osgi-launcher</bootFeature> - <bootFeature>brooklyn-jsgui</bootFeature> - <bootFeature>brooklyn-rest-resources</bootFeature> - <bootFeature>brooklyn-commands</bootFeature> - </bootFeatures> - </configuration> - </plugin> - </plugins> - </build> - -</project> - http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/a2f6cb5f/karaf/apache-brooklyn/src/main/filtered-resources/etc/branding.properties ---------------------------------------------------------------------- diff --git a/karaf/apache-brooklyn/src/main/filtered-resources/etc/branding.properties b/karaf/apache-brooklyn/src/main/filtered-resources/etc/branding.properties deleted file mode 100755 index da2d564..0000000 --- a/karaf/apache-brooklyn/src/main/filtered-resources/etc/branding.properties +++ /dev/null @@ -1,35 +0,0 @@ -################################################################################ -# -# 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. -# -################################################################################ - -welcome = \ -\u001B[33m\u001B[0m\n\ -\u001B[33m _ _ _ \u001B[0m\n\ -\u001B[33m | |__ _ __ ___ ___ | | _| |_ _ _ __ (R) \u001B[0m\n\ -\u001B[33m | '_ \\| '__/ _ \\ / _ \\| |/ / | | | | '_ \\ \u001B[0m\n\ -\u001B[33m | |_) | | | (_) | (_) | <| | |_| | | | | \u001B[0m\n\ -\u001B[33m |_.__/|_| \\___/ \\___/|_|\\_\\_|\\__, |_| |_| \u001B[0m\n\ -\u001B[33m |___/ \u001B[0m\n\ -\u001B[33m \u001B[0m\n\ -\u001B[33m http://brooklyn.apache.org \u001B[0m\n\ -\u001B[33m (version ${project.version})\u001B[0m\n\ -\u001B[33m\u001B[0m\n\ -\u001B[33mHit '\u001B[1m<tab>\u001B[0m' for a list of available commands\u001B[0m\n\ -\u001B[33mand '\u001B[1m[cmd] --help\u001B[0m' for help on a specific command.\u001B[0m\n\ -\u001B[33mHit '\u001B[1m<ctrl-d>\u001B[0m' or '\u001B[1mosgi:shutdown\u001B[0m' to shutdown\u001B[0m\n\ -\u001B[33m\u001B[0m\n\ http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/a2f6cb5f/karaf/apache-brooklyn/src/main/resources/etc/custom.properties ---------------------------------------------------------------------- diff --git a/karaf/apache-brooklyn/src/main/resources/etc/custom.properties b/karaf/apache-brooklyn/src/main/resources/etc/custom.properties deleted file mode 100644 index 7da5c63..0000000 --- a/karaf/apache-brooklyn/src/main/resources/etc/custom.properties +++ /dev/null @@ -1,120 +0,0 @@ -################################################################################ -# -# 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. -# -################################################################################ - -# -# You can place any customized configuration here. -# All the values specified here will override the default value. -# - -# Brooklyn used to bundle Apache Felix, so force felix -karaf.framework=felix - -# brooklyn used 4.4.0 at the time of osgification, which differs from karaf's bundled felix version -#karaf.framework.felix=mvn\:org.apache.felix/org.apache.felix.framework/${felix.framework.version} - -#karaf.systemBundlesStartLevel=50 -# -#org.osgi.framework.bootdelegation=org.apache.karaf.jaas.boot,!com.sun.xml.messaging.saaj.*,!com.sun.xml.internal.bind.*,sun.*,com.sun.*,javax.transaction,javax.transaction.*,org.apache.xalan.processor,org.apache.xpath.jaxp,org.apache.xml.dtm.ref,org.apache.xerces.jaxp.datatype,org.apache.xerces.stax,org.apache.xerces.parsers,org.apache.xerces.jaxp,org.apache.xerces.jaxp.validation,org.apache.xerces.dom -# -#org.osgi.framework.system.packages.extra = \ -# org.apache.karaf.branding, \ -# com.sun.org.apache.xalan.internal.xsltc.trax, \ -# com.sun.org.apache.xerces.internal.dom, \ -# com.sun.org.apache.xerces.internal.jaxp, \ -# com.sun.org.apache.xerces.internal.xni, \ -# com.sun.jndi.ldap, \ -# org.apache.xalan.extensions; version="2.7.1", \ -# org.apache.xalan.xsltc.compiler; version="2.7.1", \ -# org.apache.xalan.xsltc.cmdline.getopt; version="2.7.1", \ -# org.apache.xalan.xsltc.util; version="2.7.1", \ -# org.apache.xalan.transformer; version="2.7.1", \ -# org.apache.xalan.xsltc.trax; version="2.7.1", \ -# org.apache.xalan.processor; version="2.7.1", \ -# org.apache.xalan.lib; version="2.7.1", \ -# org.apache.xalan.trace; version="2.7.1", \ -# org.apache.xalan.xsltc.compiler.util; version="2.7.1", \ -# org.apache.xalan.templates; version="2.7.1", \ -# org.apache.xalan.xsltc; version="2.7.1", \ -# org.apache.xalan.xsltc.runtime; version="2.7.1", \ -# org.apache.xalan; version="2.7.1", \ -# org.apache.xalan.xslt; version="2.7.1", \ -# org.apache.xalan.lib.sql; version="2.7.1", \ -# org.apache.xalan.xsltc.runtime.output; version="2.7.1", \ -# org.apache.xalan.xsltc.dom; version="2.7.1", \ -# org.apache.xalan.client; version="2.7.1", \ -# org.apache.xalan.xsltc.cmdline; version="2.7.1", \ -# org.apache.xalan.serialize; version="2.7.1", \ -# org.apache.xalan.res; version="2.7.1", \ -# org.apache.xml.dtm.ref; version="2.7.1", \ -# org.apache.xml.dtm; version="2.7.1", \ -# org.apache.xml.dtm.ref.sax2dtm; version="2.7.1", \ -# org.apache.xml.dtm.ref.dom2dtm; version="2.7.1", \ -# org.apache.xml.res; version="2.7.1", \ -# org.apache.xml.serializer.dom3; version="2.7.1", \ -# org.apache.xml.serializer; version="2.7.1", \ -# org.apache.xml.serializer.utils; version="2.7.1", \ -# org.apache.xml.utils.res; version="2.7.1", \ -# org.apache.xml.utils; version="2.7.1", \ -# org.apache.xpath.functions; version="2.7.1", \ -# org.apache.xpath.jaxp; version="2.7.1", \ -# org.apache.xpath.patterns; version="2.7.1", \ -# org.apache.xpath.objects; version="2.7.1", \ -# org.apache.xpath.res; version="2.7.1", \ -# org.apache.xpath; version="2.7.1", \ -# org.apache.xpath.axes; version="2.7.1", \ -# org.apache.xpath.compiler; version="2.7.1", \ -# org.apache.xpath.operations; version="2.7.1", \ -# org.apache.xpath.domapi; version="2.7.1", \ -# org.apache.html.dom; version="2.11.0", \ -# org.apache.wml.dom; version="2.11.0", \ -# org.apache.wml; version="2.11.0", \ -# org.apache.xerces.parsers; version="2.11.0", \ -# org.apache.xerces.impl.dtd.models; version="2.11.0", \ -# org.apache.xerces.xni.parser; version="2.11.0", \ -# org.apache.xerces.impl.dv.xs; version="2.11.0", \ -# org.apache.xerces.impl.xs.traversers; version="2.11.0", \ -# org.apache.xerces.util; version="2.11.0", \ -# org.apache.xerces.impl.dtd; version="2.11.0", \ -# org.apache.xerces.jaxp.validation; version="2.11.0", \ -# org.apache.xerces.dom3.as; version="2.11.0", \ -# org.apache.xerces.impl.dv; version="2.11.0", \ -# org.apache.xerces.jaxp; version="2.11.0", \ -# org.apache.xerces.jaxp.datatype; version="2.11.0", \ -# org.apache.xerces.impl.xpath.regex; version="2.11.0", \ -# org.apache.xerces.xni; version="2.11.0", \ -# org.apache.xerces.impl.msg; version="2.11.0", \ -# org.apache.xerces.impl.dv.util; version="2.11.0", \ -# org.apache.xerces.impl.xs.util; version="2.11.0", \ -# org.apache.xerces.dom; version="2.11.0", \ -# org.apache.xerces.dom.events; version="2.11.0", \ -# org.apache.xerces.impl.xs.opti; version="2.11.0", \ -# org.apache.xerces.impl; version="2.11.0", \ -# org.apache.xerces.xs; version="2.11.0", \ -# org.apache.xerces.impl.io; version="2.11.0", \ -# org.apache.xerces.xpointer; version="2.11.0", \ -# org.apache.xerces.impl.dv.dtd; version="2.11.0", \ -# org.apache.xerces.xinclude; version="2.11.0", \ -# org.apache.xerces.impl.xpath; version="2.11.0", \ -# org.apache.xerces.xs.datatypes; version="2.11.0", \ -# org.apache.xerces.impl.xs.identity; version="2.11.0", \ -# org.apache.xerces.impl.xs.models; version="2.11.0", \ -# org.apache.xerces.xni.grammars; version="2.11.0", \ -# org.apache.xerces.impl.xs; version="2.11.0", \ -# org.apache.xerces.impl.validation; version="2.11.0", \ -# org.apache.xml.serialize; version="2.11.0" \ No newline at end of file http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/a2f6cb5f/karaf/apache-brooklyn/src/main/resources/etc/default.catalog.bom ---------------------------------------------------------------------- diff --git a/karaf/apache-brooklyn/src/main/resources/etc/default.catalog.bom b/karaf/apache-brooklyn/src/main/resources/etc/default.catalog.bom deleted file mode 100644 index e1cfe99..0000000 --- a/karaf/apache-brooklyn/src/main/resources/etc/default.catalog.bom +++ /dev/null @@ -1,370 +0,0 @@ - -# this catalog bom is an illustration supplying a few useful sample items -# and templates to get started using Brooklyn - -brooklyn.catalog: - version: "0.10.0-SNAPSHOT" # BROOKLYN_VERSION - items: - - brooklyn.libraries: - - name: org.apache.brooklyn.karaf-init - version: "0.10.0.SNAPSHOT" # BROOKLYN_VERSION - include: classpath://catalog-classes.bom - - - id: server - itemType: entity - description: | - Provision a server, with customizable provisioning.properties and credentials installed, - but no other special software process or scripts executed. - item: - type: org.apache.brooklyn.entity.software.base.EmptySoftwareProcess - name: Server - - - id: vanilla-bash-server - itemType: entity - description: | - Provision a server, with customizable provisioning.properties and credentials installed, - but no other special software process or scripts executed. - The script should be supplied in "launch.command" as per docs on - org.apache.brooklyn.entity.software.base.VanillaSoftwareProcess. - item: - type: org.apache.brooklyn.entity.software.base.VanillaSoftwareProcess - name: Server with Launch Script (bash) - - - id: load-balancer - itemType: entity - description: | - Create a load balancer which will point at members in the group entity - referred to by the config key "serverPool". - The sensor advertising the port can be configured with the "member.sensor.portNumber" config key, - defaulting to `http.port`; all member entities which have published "service.up" will then be picked up. - item: - type: org.apache.brooklyn.entity.proxy.nginx.NginxController - name: Load Balancer (nginx) - - - id: cluster - itemType: entity - description: | - Create a cluster of entities, resizable, with starting size "initialSize", - and using a spec supplied in the "memberSpec" key. - item: - type: org.apache.brooklyn.entity.group.DynamicCluster - - - id: 1-server-template - itemType: template - name: "Template 1: Server" - description: | - Sample YAML to provision a server in a cloud with illustrative VM properties - item: - name: Server (Brooklyn Example) - - # this basic example shows how Brooklyn can provision a single raw VM - # in the cloud or location of your choice - - services: - - type: server - name: My VM - - # location can be e.g. `softlayer` or `jclouds:openstack-nova:https://9.9.9.9:9999/v2.0/`, - # or `localhost` or `byon:(hosts="10.9.1.1,10.9.1.2,[email protected].{10,11,20-29}")` - location: - jclouds:aws-ec2: - # edit these to use your credential (or delete if credentials specified in brooklyn.properties) - identity: <REPLACE> - credential: <REPLACE> - - region: eu-central-1 - - # we want Ubuntu, with a lot of RAM - osFamily: ubuntu - minRam: 8gb - - # set up this user and password (default is to authorize a public key) - user: sample - password: s4mpl3 - - - id: 2-bash-web-server-template - itemType: template - name: "Template 2: Bash Web Server" - description: | - Sample YAML building on Template 1, - adding bash commands to launch a Python-based web server - on port 8020 - item: - name: Python Web Server (Brooklyn Example) - - # this example builds on the previous one, - # adding some scripts to initialize the VM - - services: - - type: vanilla-bash-server - name: My Bash Web Server VM - brooklyn.config: - install.command: | - # install python if not present - which python || \ - { sudo apt-get update && sudo apt-get install python ; } || \ - { sudo yum update && sudo yum install python ; } || \ - { echo WARNING: cannot install python && exit 1 ; } - - customize.command: | - # create the web page to serve - cat > index.html << EOF - - Hello world. - <p> - I am ${ENTITY_INFO}, ${MESSAGE:-a Brooklyn sample}. - <p> - Created at: `date` - <p> - I am running at ${HOSTNAME}, with on-box IP configuration: - <pre> - `ifconfig | grep inet` - </pre> - - EOF - - launch.command: | - # launch in background (ensuring no streams open), and record PID to file - nohup python -m SimpleHTTPServer ${PORT:-8020} < /dev/null > output.txt 2>&1 & - echo $! > ${PID_FILE:-pid.txt} - sleep 5 - ps -p `cat ${PID_FILE:-pid.txt}` - if [ $? -ne 0 ] ; then - cat output.txt - echo WARNING: python web server not running - exit 1 - fi - - shell.env: - HOSTNAME: $brooklyn:attributeWhenReady("host.name") - PORT: $brooklyn:config("my.app.port") - ENTITY_INFO: $brooklyn:component("this", "") - MESSAGE: $brooklyn:config("my.message") - - # custom - my.app.port: 8020 - my.message: "good to meet you" - - brooklyn.enrichers: - # publish the URL as a sensor; the GUI will pick this up (main.uri) - - type: org.apache.brooklyn.enricher.stock.Transformer - brooklyn.config: - uniqueTag: url-generator - enricher.sourceSensor: host.subnet.hostname - # use the definition from Attributes class, as it has a RendererHint so GUI makes it a link - enricher.targetSensor: $brooklyn:sensor("org.apache.brooklyn.core.entity.Attributes", "main.uri") - enricher.targetValue: - $brooklyn:formatString: - - "http://%s:%s/" - - $brooklyn:attributeWhenReady("host.subnet.hostname") - - $brooklyn:config("my.app.port") - - location: - jclouds:aws-ec2: - region: eu-central-1 - # edit these (or delete if credentials specified in brooklyn.properties) - identity: <REPLACE> - credential: <REPLACE> - - - id: 3-bash-web-and-riak-template - itemType: template - name: "Template 3: Bash Web Server and Scaling Riak Cluster" - description: | - Sample YAML building on Template 2, - composing that blueprint with a Riak cluster and injecting the URL - item: - name: Bash Web Server and Riak Cluster (Brooklyn Example) - - # this example *references* the previous one, - # combining it with a stock blueprint for a Riak cluster, - # and shows how a sensor from the latter can be injected - - services: - - # reference template 2, overriding message to point at riak - - type: 2-bash-web-server-template - brooklyn.config: - my.message: $brooklyn:formatString("connected to Riak at %s", - $brooklyn:entity("riak-cluster").attributeWhenReady("main.uri")) - # and clear the location defined there so it is taken from this template - locations: [] - - # use the off-the-shelf Riak cluster - - type: org.apache.brooklyn.entity.nosql.riak.RiakCluster - id: riak-cluster - initialSize: 3 - # and add a policy to scale based on ops per minute - brooklyn.policies: - - type: org.apache.brooklyn.policy.autoscaling.AutoScalerPolicy - brooklyn.config: - metric: riak.node.ops.1m.perNode - # more than 100 ops per second (6k/min) scales out, less than 50 scales back - # up to a max of 8 riak nodes here (can be changed in GUI / REST API afterwards) - metricLowerBound: 3000 - metricUpperBound: 6000 - minPoolSize: 3 - maxPoolSize: 8 - resizeUpStabilizationDelay: 30s - resizeDownStabilizationDelay: 5m - - location: - jclouds:aws-ec2: - region: eu-central-1 - # edit these (or delete if credentials specified in brooklyn.properties) - identity: <REPLACE> - credential: <REPLACE> - - - id: 4-resilient-bash-web-cluster-template - itemType: template - name: "Template 4: Resilient Load-Balanced Bash Web Cluster with Sensors" - description: | - Sample YAML to provision a cluster of the bash/python web server nodes, - with sensors configured, and a load balancer pointing at them, - and resilience policies for node replacement and scaling - item: - name: Resilient Load-Balanced Bash Web Cluster (Brooklyn Example) - - # this final example shows some of the advanced functionality: - # defining custom sensors, and a cluster with a "spec", - # policies for resilience and scaling based on that sensor, - # and wiring a load balancer in front of the cluster - - # combining this with the riak cluster in the previous example - # is left as a suggested exercise for the user - - services: - - # define a cluster of the web nodes - - type: cluster - name: Cluster of Bash Web Nodes - id: my-web-cluster - brooklyn.config: - initialSize: 1 - memberSpec: - $brooklyn:entitySpec: - # template 2 is used as the spec for items in this cluster - # with a new message overwriting the previous, - # and a lot of sensors defined - type: 2-bash-web-server-template - name: My Bash Web Server VM with Sensors - # and clear the location defined there so it is taken from this template - locations: [] - - brooklyn.config: - my.message: "part of the cluster" - - brooklyn.initializers: - # make a simple request-count sensor, by counting the number of 200 responses in output.txt - - type: org.apache.brooklyn.core.sensor.ssh.SshCommandSensor - brooklyn.config: - name: reqs.count - targetType: int - period: 5s - command: "cat output.txt | grep HTTP | grep 200 | wc | awk '{print $1}'" - # and publish the port as a sensor so the load-balancer can pick it up - - type: org.apache.brooklyn.core.sensor.StaticSensor - brooklyn.config: - name: app.port - targetType: int - static.value: $brooklyn:config("my.app.port") - - brooklyn.enrichers: - # derive reqs.per_sec from reqs.count - - type: org.apache.brooklyn.enricher.stock.YamlTimeWeightedDeltaEnricher - brooklyn.config: - enricher.sourceSensor: reqs.count - enricher.targetSensor: reqs.per_sec - enricher.delta.period: 1s - # and take an average over 30s for reqs.per_sec into reqs.per_sec.windowed_30s - - type: org.apache.brooklyn.enricher.stock.YamlRollingTimeWindowMeanEnricher - brooklyn.config: - enricher.sourceSensor: reqs.per_sec - enricher.targetSensor: reqs.per_sec.windowed_30s - enricher.window.duration: 30s - - # emit failure sensor if a failure connecting to the service is sustained for 30s - - type: org.apache.brooklyn.policy.ha.ServiceFailureDetector - brooklyn.config: - entityFailed.stabilizationDelay: 30s - - brooklyn.policies: - # restart if a failure is detected (with a max of one restart in 2m, sensor will propagate otherwise) - - type: org.apache.brooklyn.policy.ha.ServiceRestarter - brooklyn.config: - failOnRecurringFailuresInThisDuration: 2m - - # back at the cluster, create a total per-sec and some per-node average - brooklyn.enrichers: - - type: org.apache.brooklyn.enricher.stock.Aggregator - brooklyn.config: - enricher.sourceSensor: reqs.per_sec - enricher.targetSensor: reqs.per_sec - transformation: sum - - type: org.apache.brooklyn.enricher.stock.Aggregator - brooklyn.config: - enricher.sourceSensor: reqs.per_sec - enricher.targetSensor: reqs.per_sec.per_node - transformation: average - - type: org.apache.brooklyn.enricher.stock.Aggregator - brooklyn.config: - enricher.sourceSensor: reqs.per_sec.windowed_30s - enricher.targetSensor: reqs.per_sec.windowed_30s.per_node - transformation: average - - brooklyn.policies: - # resilience: if a per-node restart policy fails, - # just throw that node away and create a new one - - type: org.apache.brooklyn.policy.ha.ServiceReplacer - - # and scale based on reqs/sec - - type: org.apache.brooklyn.policy.autoscaling.AutoScalerPolicy - brooklyn.config: - # scale based on reqs/sec (though in a real-world situation, - # reqs.per_sec.windowed_30s.per_node might be a better choice) - metric: reqs.per_sec.per_node - - # really low numbers, so you can trigger a scale-out just by hitting reload a lot - metricUpperBound: 3 - metricLowerBound: 1 - - # sustain 3 reqs/sec for 2s and it will scale out - resizeUpStabilizationDelay: 2s - # only scale down when sustained for 1m - resizeDownStabilizationDelay: 1m - - maxPoolSize: 10 - - # and add a load-balancer pointing at the cluster - - type: load-balancer - id: load-bal - brooklyn.config: - # point this load balancer at the cluster, specifying port to forward to - loadbalancer.serverpool: $brooklyn:entity("my-web-cluster") - member.sensor.portNumber: app.port - # disable sticky sessions to allow easy validation of balancing via browser refresh - nginx.sticky: false - - brooklyn.enrichers: - # publish a few useful info sensors and KPI's to the root of the app - - type: org.apache.brooklyn.enricher.stock.Propagator - brooklyn.config: - uniqueTag: propagate-load-balancer-url - producer: $brooklyn:entity("load-bal") - propagating: - - main.uri - - type: org.apache.brooklyn.enricher.stock.Propagator - brooklyn.config: - uniqueTag: propagate-reqs-per-sec - producer: $brooklyn:entity("my-web-cluster") - propagating: - - reqs.per_sec - - reqs.per_sec.windowed_30s.per_node - - location: - jclouds:aws-ec2: - # edit these (or delete if credentials specified in brooklyn.properties) - identity: <REPLACE> - credential: <REPLACE> - - region: eu-central-1 - minRam: 2gb http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/a2f6cb5f/karaf/apache-brooklyn/src/main/resources/etc/org.apache.brooklyn.core.catalog.bomscanner.cfg ---------------------------------------------------------------------- diff --git a/karaf/apache-brooklyn/src/main/resources/etc/org.apache.brooklyn.core.catalog.bomscanner.cfg b/karaf/apache-brooklyn/src/main/resources/etc/org.apache.brooklyn.core.catalog.bomscanner.cfg deleted file mode 100644 index 242dfd6..0000000 --- a/karaf/apache-brooklyn/src/main/resources/etc/org.apache.brooklyn.core.catalog.bomscanner.cfg +++ /dev/null @@ -1,27 +0,0 @@ -################################################################################ -# -# 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. -# -################################################################################ - -# CSV Whitelist of regular expressions to match bundle symbolic id if bundle is to be permitted to add -# applications (templates) to the catalog -whiteList=.* - -# CSV Blacklist of regular expressions to match bundle symbolic id to prevent selected whitelisted bundles -# adding applications (templates) to the catalog -blackList= - http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/a2f6cb5f/karaf/apache-brooklyn/src/main/resources/etc/org.apache.brooklyn.osgilauncher.cfg ---------------------------------------------------------------------- diff --git a/karaf/apache-brooklyn/src/main/resources/etc/org.apache.brooklyn.osgilauncher.cfg b/karaf/apache-brooklyn/src/main/resources/etc/org.apache.brooklyn.osgilauncher.cfg deleted file mode 100644 index 24a619a..0000000 --- a/karaf/apache-brooklyn/src/main/resources/etc/org.apache.brooklyn.osgilauncher.cfg +++ /dev/null @@ -1,65 +0,0 @@ -################################################################################ -# -# 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. -# -################################################################################ - -# This file temporarily contains boot settings for brooklyn karaf launcher, -# matching some of the command-line options of the previous brooklyn-cli launcher -# (those used during the initialization sequence) -# -# Most of these will migrate to a permanent cfg file, once the components themselves get refactored -# and the configuration options are agreed upon - -# Location of the global brooklyn.properties file -#globalBrooklynPropertiesFile=~/.brooklyn/brooklyn.properties - -# Location of the local brooklyn.properties file, normally specified at the cli. Overrides properties from the global set. -#localBrooklynPropertiesFile= - - -# Ignore catalog subsystem failures during startup (default is to continue, so errors can be viewed via the API) -#ignoreCatalogErrors=true - -# Ignore persistence/HA subsystem failures during startup (default is to continue, so errors can be viewed via the API) -#ignorePersistenceErrors=true - -# The high availability mode. Possible values are: -# - DISABLED: management node works in isolation - will not cooperate with any other standby/master nodes in management plane; -# - AUTO: will look for other management nodes, and will allocate itself as standby or master based on other nodes' states; -# - MASTER: will startup as master - if there is already a master then fails immediately; -# - STANDBY: will start up as lukewarm standby with no state - if there is not already a master then fails immediately, -# and if there is a master which subsequently fails, this node can promote itself; -# - HOT_STANDBY: will start up as hot standby in read-only mode - if there is not already a master then fails immediately, -# and if there is a master which subseuqently fails, this node can promote itself; -# - HOT_BACKUP: will start up as hot backup in read-only mode - no master is required, and this node will not become a master -#highAvailabilityMode=DISABLED - -# The persistence mode. Possible values are: -# - DISABLED: will not read or persist any state; -# - AUTO: will rebind to any existing state, or start up fresh if no state; -# - REBIND: will rebind to the existing state, or fail if no state available; -# - CLEAN: will start up fresh (removing any existing state) -#persistMode=DISABLED - -# The directory to read/write persisted state (or container name if using an object store) -#persistenceDir= - -# The location spec for an object store to read/write persisted state -#persistenceLocation= - -# Periodic read-only rebind -#persistPeriod=1s http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/a2f6cb5f/karaf/apache-brooklyn/src/main/resources/etc/org.ops4j.pax.logging.cfg ---------------------------------------------------------------------- diff --git a/karaf/apache-brooklyn/src/main/resources/etc/org.ops4j.pax.logging.cfg b/karaf/apache-brooklyn/src/main/resources/etc/org.ops4j.pax.logging.cfg deleted file mode 100755 index acd2aea..0000000 --- a/karaf/apache-brooklyn/src/main/resources/etc/org.ops4j.pax.logging.cfg +++ /dev/null @@ -1,95 +0,0 @@ -################################################################################ -# -# 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. -# -################################################################################ - -# Root logger -log4j.rootLogger=INFO, out, debugFile, osgi:VmLogAppender -log4j.throwableRenderer=org.apache.log4j.OsgiThrowableRenderer - -# CONSOLE appender not used by default -log4j.appender.stdout=org.apache.log4j.ConsoleAppender -log4j.appender.stdout.layout=org.apache.log4j.PatternLayout -log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} %-5.5p %3.3X{bundle.id} %-30.30c{2} [%-16.16t] %m%n - -# Info file appender -log4j.appender.out=org.apache.log4j.RollingFileAppender -log4j.appender.out.layout=org.apache.log4j.PatternLayout -log4j.appender.out.layout.ConversionPattern=%d{ABSOLUTE} %-5.5p %3.3X{bundle.id} %-30.30c{2} [%-16.16t] %m%n -log4j.appender.out.file=${karaf.home}/log/brooklyn.info.log -log4j.appender.out.Threshold=INFO -log4j.appender.out.append=true -log4j.appender.out.maxFileSize=100MB -log4j.appender.out.maxBackupIndex=10 - -# Debug file appender -log4j.appender.debugFile=org.apache.log4j.RollingFileAppender -log4j.appender.debugFile.layout=org.apache.log4j.PatternLayout -log4j.appender.debugFile.layout.ConversionPattern=%d{ABSOLUTE} %-5.5p %3.3X{bundle.id} %-30.30c{2} [%-16.16t] %m%n -log4j.appender.debugFile.file=${karaf.home}/log/brooklyn.debug.log -log4j.appender.debugFile.append=true -log4j.appender.debugFile.maxFileSize=100MB -log4j.appender.debugFile.maxBackupIndex=10 - -# Sift appender -log4j.appender.sift=org.apache.log4j.sift.MDCSiftingAppender -log4j.appender.sift.key=bundle.name -log4j.appender.sift.default=brooklyn -log4j.appender.sift.appender=org.apache.log4j.FileAppender -log4j.appender.sift.appender.layout=org.apache.log4j.PatternLayout -log4j.appender.sift.appender.layout.ConversionPattern=%d{ABSOLUTE} %-5.5p %3.3X{bundle.id} %-30.30c{2} [%-16.16t] %m%n -log4j.appender.sift.appender.file=${karaf.data}/log/$\\{bundle.name\\}.log -log4j.appender.sift.appender.append=true - - -# Logger configuration - -# The following properties turn on quite verbose DEBUG logging for Brooklyn-relevant loggers -log4j.logger.brooklyn=DEBUG -log4j.logger.org.apache.brooklyn=DEBUG -log4j.logger.org.jclouds=DEBUG -log4j.logger.jclouds=DEBUG -io.cloudsoft.winrm4j.winrm.WinRmTool=DEBUG - -# If you're just going to have a few debug categories these are recommended; -# comment out the loggers above and leave these as-is -log4.logger.brooklyn.SSH=DEBUG -log4.logger.brooklyn.location.basic.jclouds=DEBUG -log4.logger.brooklyn.util.internal.ssh=DEBUG -log4.logger.org.apache.brooklyn.SSH=DEBUG -log4.logger.org.apache.brooklyn.location.basic.jclouds=DEBUG -log4.logger.org.apache.brooklyn.util.internal.ssh=DEBUG - -# a bit noisy at INFO, but still, poss interesting -log4j.logger.org.reflections.Reflections=INFO -log4j.logger.com.sun.jersey.server.impl.application=INFO -log4j.logger.org.apache.whirr.service.ComputeCache=INFO -log4j.logger.jclouds.ssh=INFO -log4j.logger.org.apache.http.impl.client=INFO -log4j.logger.javax.management.remote=INFO - -# some loggers are very noisy however, exclude them -log4j.logger.org.apache.cxf=WARN -log4j.logger.net.schmizz=WARN -log4j.logger.org.eclipse.jetty=WARN -log4j.logger.org.mongodb.driver=WARN - -# Wordnik logs errors in a few places which aren't errors at all; ignore them altogether -# (Turn them back on if you need to see how API-doc gets generated, and also -# see https://github.com/wordnik/swagger-core/issues/58) -log4j.logger.com.wordnik.swagger=OFF - http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/a2f6cb5f/karaf/apache-brooklyn/src/main/resources/etc/org.ops4j.pax.url.mvn.repositories.cfg ---------------------------------------------------------------------- diff --git a/karaf/apache-brooklyn/src/main/resources/etc/org.ops4j.pax.url.mvn.repositories.cfg b/karaf/apache-brooklyn/src/main/resources/etc/org.ops4j.pax.url.mvn.repositories.cfg deleted file mode 100644 index b7bc8c9..0000000 --- a/karaf/apache-brooklyn/src/main/resources/etc/org.ops4j.pax.url.mvn.repositories.cfg +++ /dev/null @@ -1,20 +0,0 @@ -################################################################################ -# -# 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. -# -################################################################################ - -org.ops4j.pax.url.mvn.repositories=+http://repo1.maven.org/maven2 http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/a2f6cb5f/karaf/apache-brooklyn/src/main/resources/etc/org.ops4j.pax.web.cfg ---------------------------------------------------------------------- diff --git a/karaf/apache-brooklyn/src/main/resources/etc/org.ops4j.pax.web.cfg b/karaf/apache-brooklyn/src/main/resources/etc/org.ops4j.pax.web.cfg deleted file mode 100644 index 39947eb..0000000 --- a/karaf/apache-brooklyn/src/main/resources/etc/org.ops4j.pax.web.cfg +++ /dev/null @@ -1,19 +0,0 @@ -# -# 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. -# -# TODO use the PortService - ${port:8081,8200} -org.osgi.service.http.port=8081 - http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/a2f6cb5f/karaf/apache-brooklyn/src/main/resources/etc/system.properties ---------------------------------------------------------------------- diff --git a/karaf/apache-brooklyn/src/main/resources/etc/system.properties b/karaf/apache-brooklyn/src/main/resources/etc/system.properties deleted file mode 100644 index a95f167..0000000 --- a/karaf/apache-brooklyn/src/main/resources/etc/system.properties +++ /dev/null @@ -1,133 +0,0 @@ -################################################################################ -# -# 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. -# -################################################################################ - -# -# The properties defined in this file will be made available through system -# properties at the very beginning of the Karaf's boot process. -# - - -# Log level when the pax-logging service is not available -# This level will only be used while the pax-logging service bundle -# is not fully available. -# To change log levels, please refer to the org.ops4j.pax.logging.cfg file -# instead. -org.ops4j.pax.logging.DefaultServiceLog.level = ERROR - -# -# Name of this Karaf instance. -# -karaf.name = brooklyn - -# -# Default repository where bundles will be loaded from before using -# other Maven repositories. For the full Maven configuration, see -# the org.ops4j.pax.url.mvn.cfg file. -# -karaf.default.repository = system - -# -# Location of a shell script that will be run when starting a shell -# session. This script can be used to create aliases and define -# additional commands. -# -karaf.shell.init.script = ${karaf.etc}/shell.init.script - -# -# Sets the maximum size of the shell command history. If not set, -# defaults to 500 entries. Setting to 0 will disable history. -# -# karaf.shell.history.maxSize = 0 - -# -# Deletes the entire karaf.data directory at every start -# -karaf.clean.all = false - -# -# Deletes the karaf.data/cache directory at every start -# -karaf.clean.cache = false - -# -# Roles to use when logging into a local Karaf console. -# -# The syntax is the following: -# [classname:]principal -# where classname is the class name of the principal object -# (defaults to org.apache.karaf.jaas.modules.RolePrincipal) -# and principal is the name of the principal of that class -# (defaults to instance). -# -karaf.local.roles = admin,manager,viewer,systembundles - -# -# Set this empty property to avoid errors when validating xml documents. -# -xml.catalog.files = - -# -# Suppress the bell in the console when hitting backspace too many times -# for example -# -jline.nobell = true - -# -# ServiceMix specs options -# -org.apache.servicemix.specs.debug = false -org.apache.servicemix.specs.timeout = 0 - -# -# Settings for the OSGi 4.3 Weaving -# By default, we will not weave any classes. Change this setting to include classes -# that you application needs to have woven. -# -org.apache.aries.proxy.weaving.enabled = none -# Classes not to weave - Aries default + Xerces which is known to have issues. -org.apache.aries.proxy.weaving.disabled = org.objectweb.asm.*,org.slf4j.*,org.apache.log4j.*,javax.*,org.apache.xerces.* - -# -# By default, only Karaf shell commands are secured, but additional services can be -# secured by expanding this filter -# -karaf.secured.services = (&(osgi.command.scope=*)(osgi.command.function=*)) - -# -# Security properties -# -# To enable OSGi security, uncomment the properties below, -# install the framework-security feature and restart. -# -#java.security.policy=${karaf.etc}/all.policy -#org.osgi.framework.security=osgi -#org.osgi.framework.trust.repositories=${karaf.etc}/trustStore.ks - -# -# HA/Lock configuration -# -# Karaf uses a lock mechanism to know which instance is the master (HA) -# The lock can be on the filesystem (default) or on a database. -# -# See http://karaf.apache.org/manual/latest/users-guide/failover.html for details. -# -# Even using a single instance, Karaf creates the lock file -# You can specify the location of the lock file using the -# karaf.lock.dir=/path/to/the/directory/containing/the/lock -# http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/a2f6cb5f/karaf/features/src/main/feature/feature.xml ---------------------------------------------------------------------- diff --git a/karaf/features/src/main/feature/feature.xml b/karaf/features/src/main/feature/feature.xml index c4eefc5..8bc7e62 100644 --- a/karaf/features/src/main/feature/feature.xml +++ b/karaf/features/src/main/feature/feature.xml @@ -279,59 +279,6 @@ <feature>brooklyn-software-winrm</feature> </feature> - <feature name="brooklyn-software-network" version="${project.version}" description="Brooklyn Network Software Entities"> - <bundle>mvn:org.apache.brooklyn/brooklyn-software-network/${project.version}</bundle> - <feature>brooklyn-software-base</feature> - </feature> - - <feature name="brooklyn-software-cm" version="${project.version}" description="Configuration Management modules"> - <bundle>mvn:org.apache.brooklyn/brooklyn-software-cm-salt/${project.version}</bundle> - <bundle>mvn:org.apache.brooklyn/brooklyn-software-cm-ansible/${project.version}</bundle> - </feature> - - <feature name="brooklyn-software-osgi" version="${project.version}" description="Brooklyn OSGi Software Entities"> - <bundle>mvn:org.apache.brooklyn/brooklyn-software-osgi/${project.version}</bundle> - <feature>brooklyn-core</feature> - <feature>brooklyn-api</feature> - <feature>brooklyn-software-base</feature> - <bundle dependency="true">mvn:com.google.guava/guava/${guava.version}</bundle> - </feature> - - <feature name="brooklyn-software-database" version="${project.version}" description="Brooklyn Database Software Entities"> - <bundle>mvn:org.apache.brooklyn/brooklyn-software-database/${project.version}</bundle> - <feature>brooklyn-core</feature> - <feature>brooklyn-api</feature> - <feature>brooklyn-software-base</feature> - <bundle dependency="true">mvn:com.google.guava/guava/${guava.version}</bundle> - </feature> - - <feature name="brooklyn-software-webapp" version="${project.version}" description="Brooklyn Web App Software Entities"> - <bundle>mvn:org.apache.brooklyn/brooklyn-software-webapp/${project.version}</bundle> - <feature>brooklyn-software-base</feature> - <bundle dependency="true">wrap:mvn:org.hibernate/jtidy/${jtidy.version}</bundle> - </feature> - - <feature name="brooklyn-software-messaging" version="${project.version}" description="Brooklyn Messaging Software Entities"> - <bundle>mvn:org.apache.brooklyn/brooklyn-software-messaging/${project.version}</bundle> - <feature>brooklyn-software-base</feature> - </feature> - - <feature name="brooklyn-software-nosql" version="${project.version}" description="Brooklyn NoSQL Data Store Software Entities"> - <bundle>mvn:org.apache.brooklyn/brooklyn-software-nosql/${project.version}</bundle> - <feature>brooklyn-software-base</feature> - <feature>brooklyn-software-database</feature> - <feature>brooklyn-software-webapp</feature> - <bundle dependency="true">mvn:org.mongodb/mongo-java-driver/3.0.3</bundle> - </feature> - - <feature name="brooklyn-software-monitoring" version="${project.version}" description="Brooklyn Monitoring Software Entities"> - <bundle>mvn:org.apache.brooklyn/brooklyn-software-monitoring/${project.version}</bundle> - <feature>brooklyn-core</feature> - <feature>brooklyn-api</feature> - <feature>brooklyn-software-base</feature> - <bundle dependency="true">mvn:com.google.guava/guava/${guava.version}</bundle> - </feature> - <feature name="brooklyn-test-framework" version="${project.version}" description="Brooklyn Test Framework" > <bundle>mvn:org.apache.brooklyn/brooklyn-test-framework/${project.version}</bundle> </feature> @@ -343,19 +290,6 @@ <feature>brooklyn-test-framework</feature> </feature> - <!-- TODO Not including this in the init features; need to move this to brooklyn-dist first! --> - <!-- TODO Don't load all bundles out of the box in the long run. Let users cherry pick what they need. --> - <feature name="brooklyn-library-all" version="${project.version}" description="Brooklyn All Library Entities"> - <feature>brooklyn-software-network</feature> - <feature>brooklyn-software-cm</feature> - <feature>brooklyn-software-osgi</feature> - <feature>brooklyn-software-database</feature> - <feature>brooklyn-software-webapp</feature> - <feature>brooklyn-software-messaging</feature> - <feature>brooklyn-software-nosql</feature> - <feature>brooklyn-software-monitoring</feature> - </feature> - <feature name="brooklyn-osgi-launcher" version="${project.version}" description="Brooklyn init"> <feature>brooklyn-core</feature> <feature>brooklyn-server-software-all</feature> http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/a2f6cb5f/karaf/init/src/main/resources/catalog-classes.bom ---------------------------------------------------------------------- diff --git a/karaf/init/src/main/resources/catalog-classes.bom b/karaf/init/src/main/resources/catalog-classes.bom index 950cb62..4ae1190 100644 --- a/karaf/init/src/main/resources/catalog-classes.bom +++ b/karaf/init/src/main/resources/catalog-classes.bom @@ -162,385 +162,6 @@ brooklyn.catalog: name: Server Pool description: Creates a pre-allocated server pool, which other applications can deploy to - # org.apache.brooklyn.software-webapp - - itemType: entity - items: - - id: org.apache.brooklyn.entity.webapp.nodejs.NodeJsWebAppService - iconUrl: classpath:///nodejs-logo.png - item: - type: org.apache.brooklyn.entity.webapp.nodejs.NodeJsWebAppService - name: Node.JS Application - - id: org.apache.brooklyn.entity.webapp.jboss.JBoss7Server - iconUrl: classpath:///jboss-logo.png - item: - type: org.apache.brooklyn.entity.webapp.jboss.JBoss7Server - name: JBoss Application Server 7 - description: AS7 - an open source Java application server from JBoss - - id: org.apache.brooklyn.entity.proxy.nginx.UrlMapping - item: - type: org.apache.brooklyn.entity.proxy.nginx.UrlMapping - - id: org.apache.brooklyn.entity.webapp.DynamicWebAppFabric - item: - type: org.apache.brooklyn.entity.webapp.DynamicWebAppFabric - - id: org.apache.brooklyn.entity.proxy.nginx.NginxController - iconUrl: classpath:///nginx-logo.jpeg - item: - type: org.apache.brooklyn.entity.proxy.nginx.NginxController - name: Nginx Server - description: A single Nginx server. Provides HTTP and reverse proxy services - - id: org.apache.brooklyn.entity.webapp.jboss.JBoss6Server - iconUrl: classpath:///jboss-logo.png - item: - type: org.apache.brooklyn.entity.webapp.jboss.JBoss6Server - name: JBoss Application Server 6 - description: AS6 - an open source Java application server from JBoss - - id: org.apache.brooklyn.entity.webapp.tomcat.Tomcat8Server - iconUrl: classpath:///tomcat-logo.png - item: - type: org.apache.brooklyn.entity.webapp.tomcat.Tomcat8Server - name: Tomcat 8 Server - - id: org.apache.brooklyn.entity.proxy.LoadBalancerCluster - item: - type: org.apache.brooklyn.entity.proxy.LoadBalancerCluster - - id: org.apache.brooklyn.entity.webapp.jetty.Jetty6Server - iconUrl: classpath:///jetty-logo.png - item: - type: org.apache.brooklyn.entity.webapp.jetty.Jetty6Server - name: Jetty6 Server - description: Old version (v6 @ Mortbay) of the popular Jetty webapp container - - id: org.apache.brooklyn.entity.webapp.DynamicWebAppCluster - item: - type: org.apache.brooklyn.entity.webapp.DynamicWebAppCluster - name: Dynamic Web-app Cluster - description: A cluster of web-apps, which can be dynamically re-sized; this does not include a load-balancer - - id: org.apache.brooklyn.entity.webapp.tomcat.TomcatServer - iconUrl: classpath:///tomcat-logo.png - item: - type: org.apache.brooklyn.entity.webapp.tomcat.TomcatServer - name: Tomcat 7 Server - - id: org.apache.brooklyn.entity.dns.geoscaling.GeoscalingDnsService - iconUrl: classpath:///geoscaling-logo.gif - item: - type: org.apache.brooklyn.entity.dns.geoscaling.GeoscalingDnsService - - id: org.apache.brooklyn.entity.webapp.ControlledDynamicWebAppCluster - item: - type: org.apache.brooklyn.entity.webapp.ControlledDynamicWebAppCluster - name: Controlled Dynamic Web-app Cluster - description: A cluster of load-balanced web-apps, which can be dynamically re-sized - - # org.apache.brooklyn.software-osgi - - itemType: entity - items: - - id: org.apache.brooklyn.entity.osgi.karaf.KarafContainer - iconUrl: classpath:///karaf-logo.png - item: - type: org.apache.brooklyn.entity.osgi.karaf.KarafContainer - name: Karaf - description: Apache Karaf is a small OSGi based runtime which provides a lightweight container onto which various components and applications can be deployed. - - # org.apache.brooklyn.software-nosql - - itemType: entity - items: - - id: org.apache.brooklyn.entity.nosql.redis.RedisStore - iconUrl: classpath:///redis-logo.png - item: - type: org.apache.brooklyn.entity.nosql.redis.RedisStore - name: Redis Server - description: Redis is an open-source, networked, in-memory, key-value data store with optional durability - - id: org.apache.brooklyn.entity.nosql.mongodb.sharding.MongoDBRouterCluster - iconUrl: classpath:///mongodb-logo.png - item: - type: org.apache.brooklyn.entity.nosql.mongodb.sharding.MongoDBRouterCluster - - id: org.apache.brooklyn.entity.nosql.cassandra.CassandraDatacenter - iconUrl: classpath:///cassandra-logo.jpeg - item: - type: org.apache.brooklyn.entity.nosql.cassandra.CassandraDatacenter - name: Apache Cassandra Datacenter Cluster - description: Cassandra is a highly scalable, eventually - - id: org.apache.brooklyn.entity.nosql.solr.SolrServer - iconUrl: classpath:///solr-logo.jpeg - item: - type: org.apache.brooklyn.entity.nosql.solr.SolrServer - name: Apache Solr Node - description: Solr is the popular, blazing fast open source enterprise search - - id: org.apache.brooklyn.entity.nosql.couchdb.CouchDBNode - iconUrl: classpath:///couchdb-logo.png - item: - type: org.apache.brooklyn.entity.nosql.couchdb.CouchDBNode - name: CouchDB Node - - id: org.apache.brooklyn.entity.nosql.redis.RedisShard - iconUrl: classpath:///redis-logo.png - item: - type: org.apache.brooklyn.entity.nosql.redis.RedisShard - - id: org.apache.brooklyn.entity.nosql.redis.RedisCluster - iconUrl: classpath:///redis-logo.png - item: - type: org.apache.brooklyn.entity.nosql.redis.RedisCluster - name: Redis Cluster - description: Redis is an open-source, networked, in-memory, key-value data store with optional durability - - id: org.apache.brooklyn.entity.nosql.hazelcast.HazelcastCluster - iconUrl: classpath:///hazelcast-logo.png - item: - type: org.apache.brooklyn.entity.nosql.hazelcast.HazelcastCluster - name: Hazelcast Cluster - description: Hazelcast is a clustering and highly scalable data distribution platform for Java. - - id: org.apache.brooklyn.entity.nosql.couchdb.CouchDBCluster - iconUrl: classpath:///couchdb-logo.png - item: - type: org.apache.brooklyn.entity.nosql.couchdb.CouchDBCluster - - id: org.apache.brooklyn.entity.nosql.couchbase.CouchbaseNode - iconUrl: classpath:///couchbase-logo.png - item: - type: org.apache.brooklyn.entity.nosql.couchbase.CouchbaseNode - name: CouchBase Node - description: Couchbase Server is an open source, distributed (shared-nothing architecture) - - id: org.apache.brooklyn.entity.nosql.mongodb.sharding.MongoDBShardedDeployment - iconUrl: classpath:///mongodb-logo.png - item: - type: org.apache.brooklyn.entity.nosql.mongodb.sharding.MongoDBShardedDeployment - name: MongoDB Sharded Deployment - - id: org.apache.brooklyn.entity.nosql.cassandra.CassandraNode - iconUrl: classpath:///cassandra-logo.jpeg - item: - type: org.apache.brooklyn.entity.nosql.cassandra.CassandraNode - name: Apache Cassandra Node - description: Cassandra is a highly scalable, eventually - - id: org.apache.brooklyn.entity.nosql.riak.RiakNode - iconUrl: classpath:///org/apache/brooklyn/entity/nosql/riak/riak.png - item: - type: org.apache.brooklyn.entity.nosql.riak.RiakNode - name: Riak Node - description: Riak is a distributed NoSQL key-value data store that offers - - id: org.apache.brooklyn.entity.nosql.mongodb.sharding.MongoDBConfigServerCluster - iconUrl: classpath:///mongodb-logo.png - item: - type: org.apache.brooklyn.entity.nosql.mongodb.sharding.MongoDBConfigServerCluster - - id: org.apache.brooklyn.entity.nosql.mongodb.MongoDBServer - iconUrl: classpath:///mongodb-logo.png - item: - type: org.apache.brooklyn.entity.nosql.mongodb.MongoDBServer - name: MongoDB Server - - id: org.apache.brooklyn.entity.nosql.mongodb.sharding.MongoDBRouter - iconUrl: classpath:///mongodb-logo.png - item: - type: org.apache.brooklyn.entity.nosql.mongodb.sharding.MongoDBRouter - name: MongoDB Router - - id: org.apache.brooklyn.entity.nosql.mongodb.MongoDBReplicaSet - iconUrl: classpath:///mongodb-logo.png - item: - type: org.apache.brooklyn.entity.nosql.mongodb.MongoDBReplicaSet - - id: org.apache.brooklyn.entity.nosql.mongodb.sharding.MongoDBShardCluster - iconUrl: classpath:///mongodb-logo.png - item: - type: org.apache.brooklyn.entity.nosql.mongodb.sharding.MongoDBShardCluster - - id: org.apache.brooklyn.entity.nosql.mongodb.MongoDBClient - iconUrl: classpath:///mongodb-logo.png - item: - type: org.apache.brooklyn.entity.nosql.mongodb.MongoDBClient - - id: org.apache.brooklyn.entity.nosql.elasticsearch.ElasticSearchNode - item: - type: org.apache.brooklyn.entity.nosql.elasticsearch.ElasticSearchNode - name: Elastic Search Node - description: Elasticsearch is an open-source search server based on Lucene. - - id: org.apache.brooklyn.entity.nosql.cassandra.CassandraFabric - iconUrl: classpath:///cassandra-logo.jpeg - item: - type: org.apache.brooklyn.entity.nosql.cassandra.CassandraFabric - name: Apache Cassandra Database Fabric - description: Cassandra is a highly scalable, eventually - - id: org.apache.brooklyn.entity.nosql.elasticsearch.ElasticSearchCluster - item: - type: org.apache.brooklyn.entity.nosql.elasticsearch.ElasticSearchCluster - name: Elastic Search Cluster - description: Elasticsearch is an open-source search server based on Lucene. - - id: org.apache.brooklyn.entity.nosql.cassandra.CassandraCluster - iconUrl: classpath:///cassandra-logo.jpeg - item: - type: org.apache.brooklyn.entity.nosql.cassandra.CassandraCluster - - id: org.apache.brooklyn.entity.nosql.redis.RedisSlave - iconUrl: classpath:///redis-logo.png - item: - type: org.apache.brooklyn.entity.nosql.redis.RedisSlave - - id: org.apache.brooklyn.entity.nosql.mongodb.sharding.MongoDBConfigServer - iconUrl: classpath:///mongodb-logo.png - item: - type: org.apache.brooklyn.entity.nosql.mongodb.sharding.MongoDBConfigServer - - id: org.apache.brooklyn.entity.nosql.couchbase.CouchbaseCluster - iconUrl: classpath:///couchbase-logo.png - item: - type: org.apache.brooklyn.entity.nosql.couchbase.CouchbaseCluster - name: CouchBase Cluster - description: Couchbase is an open source, distributed (shared-nothing architecture) - - id: org.apache.brooklyn.entity.nosql.couchbase.CouchbaseSyncGateway - iconUrl: classpath:///couchbase-logo.png - item: - type: org.apache.brooklyn.entity.nosql.couchbase.CouchbaseSyncGateway - - id: org.apache.brooklyn.entity.nosql.hazelcast.HazelcastNode - iconUrl: classpath:///hazelcast-logo.png - item: - type: org.apache.brooklyn.entity.nosql.hazelcast.HazelcastNode - name: Hazelcast Node - description: Hazelcast is a clustering and highly scalable data distribution platform for Java. - - id: org.apache.brooklyn.entity.nosql.riak.RiakCluster - iconUrl: classpath:///org/apache/brooklyn/entity/nosql/riak/riak.png - item: - type: org.apache.brooklyn.entity.nosql.riak.RiakCluster - name: Riak Cluster - description: Riak is a distributed NoSQL key-value data store that offers - - id: org.apache.brooklyn.entity.nosql.mongodb.sharding.CoLocatedMongoDBRouter - iconUrl: classpath:///mongodb-logo.png - item: - type: org.apache.brooklyn.entity.nosql.mongodb.sharding.CoLocatedMongoDBRouter - - # org.apache.brooklyn.software-network - - itemType: entity - items: - - id: org.apache.brooklyn.entity.network.bind.BindDnsServer - description: BIND is an Internet Domain Name Server. - item: - type: org.apache.brooklyn.entity.network.bind.BindDnsServer - name: BIND - - # org.apache.brooklyn.software-monitoring - - itemType: entity - items: - - id: org.apache.brooklyn.entity.monitoring.monit.MonitNode - iconUrl: classpath:///monit-logo.png - item: - type: org.apache.brooklyn.entity.monitoring.monit.MonitNode - name: Monit Node - description: Monit is a free open source utility for managing and monitoring, processes, programs, files, directories and filesystems on a UNIX system - - # org.apache.brooklyn.software-messaging - - itemType: entity - items: - - id: org.apache.brooklyn.entity.messaging.activemq.ActiveMQBroker - iconUrl: classpath:///activemq-logo.png - item: - type: org.apache.brooklyn.entity.messaging.activemq.ActiveMQBroker - name: ActiveMQ Broker - description: ActiveMQ is an open source message broker which fully implements the Java Message Service 1.1 (JMS) - - id: org.apache.brooklyn.entity.messaging.qpid.QpidBroker - iconUrl: classpath:///qpid-logo.jpeg - item: - type: org.apache.brooklyn.entity.messaging.qpid.QpidBroker - name: Qpid Broker - description: Apache Qpid is an open-source messaging system, implementing the Advanced Message Queuing Protocol (AMQP) - - id: org.apache.brooklyn.entity.messaging.storm.Storm - iconUrl: classpath:///apache-storm-logo.png - item: - type: org.apache.brooklyn.entity.messaging.storm.Storm - name: Storm Node - description: Apache Storm is a distributed realtime computation system. - - id: org.apache.brooklyn.entity.messaging.kafka.KafkaCluster - iconUrl: classpath:///kafka-logo.png - item: - type: org.apache.brooklyn.entity.messaging.kafka.KafkaCluster - name: Kafka - description: Apache Kafka is a distributed publish-subscribe messaging system - - id: org.apache.brooklyn.entity.messaging.activemq.ActiveMQQueue - iconUrl: classpath:///activemq-logo.png - item: - type: org.apache.brooklyn.entity.messaging.activemq.ActiveMQQueue - - id: org.apache.brooklyn.entity.zookeeper.ZooKeeperEnsemble - iconUrl: classpath:///zookeeper_logo.gif - item: - type: org.apache.brooklyn.entity.zookeeper.ZooKeeperEnsemble - name: ZooKeeper ensemble - description: A cluster of ZooKeeper servers. - - id: org.apache.brooklyn.entity.messaging.kafka.KafkaZooKeeper - iconUrl: classpath:///zookeeper_logo.gif - item: - type: org.apache.brooklyn.entity.messaging.kafka.KafkaZooKeeper - - id: org.apache.brooklyn.entity.messaging.activemq.ActiveMQTopic - iconUrl: classpath:///activemq-logo.png - item: - type: org.apache.brooklyn.entity.messaging.activemq.ActiveMQTopic - - id: org.apache.brooklyn.entity.messaging.qpid.QpidQueue - iconUrl: classpath:///qpid-logo.jpeg - item: - type: org.apache.brooklyn.entity.messaging.qpid.QpidQueue - - id: org.apache.brooklyn.entity.zookeeper.ZooKeeperNode - iconUrl: classpath:///zookeeper_logo.gif - item: - type: org.apache.brooklyn.entity.zookeeper.ZooKeeperNode - name: ZooKeeper Node - description: Apache ZooKeeper is a server which enables - - id: org.apache.brooklyn.entity.messaging.rabbit.RabbitBroker - iconUrl: classpath:///RabbitMQLogo.png - item: - type: org.apache.brooklyn.entity.messaging.rabbit.RabbitBroker - name: RabbitMQ Broker - description: RabbitMQ is an open source message broker software (i.e. message-oriented middleware) that implements the Advanced Message Queuing Protocol (AMQP) standard - - id: org.apache.brooklyn.entity.messaging.kafka.KafkaBroker - iconUrl: classpath:///kafka-logo.png - item: - type: org.apache.brooklyn.entity.messaging.kafka.KafkaBroker - - id: org.apache.brooklyn.entity.messaging.qpid.QpidTopic - iconUrl: classpath:///qpid-logo.jpeg - item: - type: org.apache.brooklyn.entity.messaging.qpid.QpidTopic - - id: org.apache.brooklyn.entity.messaging.storm.StormDeployment - iconUrl: classpath:///apache-storm-logo.png - item: - type: org.apache.brooklyn.entity.messaging.storm.StormDeployment - name: Storm Deployment - description: A Storm cluster. Apache Storm is a distributed realtime computation system. - - # org.apache.brooklyn.software-database - - itemType: entity - items: - - id: org.apache.brooklyn.entity.database.crate.CrateNode - iconUrl: classpath:///crate-logo.png - item: - type: org.apache.brooklyn.entity.database.crate.CrateNode - - id: org.apache.brooklyn.entity.database.mysql.MySqlNode - iconUrl: classpath:///mysql-logo-110x57.png - item: - type: org.apache.brooklyn.entity.database.mysql.MySqlNode - name: MySql Node - description: MySql is an open source relational database management system (RDBMS) - - id: org.apache.brooklyn.entity.database.mysql.MySqlCluster - iconUrl: classpath:///mysql-logo-110x57.png - item: - type: org.apache.brooklyn.entity.database.mysql.MySqlCluster - name: MySql Master-Slave cluster - description: Sets up a cluster of MySQL nodes using master-slave relation and binary logging - - id: org.apache.brooklyn.entity.database.postgresql.PostgreSqlNode - iconUrl: classpath:///postgresql-logo-200px.png - item: - type: org.apache.brooklyn.entity.database.postgresql.PostgreSqlNode - name: PostgreSQL Node - description: PostgreSQL is an object-relational database management system (ORDBMS) - - id: org.apache.brooklyn.entity.database.rubyrep.RubyRepNode - item: - type: org.apache.brooklyn.entity.database.rubyrep.RubyRepNode - - id: org.apache.brooklyn.entity.database.mariadb.MariaDbNode - iconUrl: classpath:///mariadb-logo-180x119.png - item: - type: org.apache.brooklyn.entity.database.mariadb.MariaDbNode - name: MariaDB Node - description: MariaDB is an open source relational database management system (RDBMS) - - # org.apache.brooklyn.software-cm-salt - - itemType: entity - items: - - id: org.apache.brooklyn.entity.cm.salt.SaltEntity - iconUrl: classpath:///saltstack-logo.png - item: - type: org.apache.brooklyn.entity.cm.salt.SaltEntity - name: SaltEntity - description: Software managed by Salt CM - - # org.apache.brooklyn.software-cm-ansible - - itemType: entity - items: - - id: org.apache.brooklyn.entity.cm.ansible.AnsibleEntity - iconUrl: classpath:///ansible-logo.png - item: - type: org.apache.brooklyn.entity.cm.ansible.AnsibleEntity - name: AnsibleEntity - description: Software managed by Ansible CM # org.apache.brooklyn.test-framework - itemType: entity http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/a2f6cb5f/karaf/itest/pom.xml ---------------------------------------------------------------------- diff --git a/karaf/itest/pom.xml b/karaf/itest/pom.xml deleted file mode 100644 index a733f6b..0000000 --- a/karaf/itest/pom.xml +++ /dev/null @@ -1,259 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- - 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. ---> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> - <modelVersion>4.0.0</modelVersion> - - <artifactId>brooklyn-itest</artifactId> - <name>Brooklyn Karaf pax-exam itest</name> - - <parent> - <groupId>org.apache.brooklyn</groupId> - <artifactId>brooklyn-karaf</artifactId> - <version>0.10.0-SNAPSHOT</version> <!-- BROOKLYN_VERSION --> - <relativePath>../pom.xml</relativePath> - </parent> - - <properties> - <includedTestGroups /> - <excludedTestGroups>org.apache.brooklyn.test.IntegrationTest</excludedTestGroups> - </properties> - - <dependencies> - <!-- Pax Exam Dependencies --> - <dependency> - <groupId>org.ops4j.pax.exam</groupId> - <artifactId>pax-exam-junit4</artifactId> - <version>${pax.exam.version}</version> - <scope>test</scope> - </dependency> - - <dependency> - <groupId>org.ops4j.pax.exam</groupId> - <artifactId>pax-exam-invoker-junit</artifactId> - <version>${pax.exam.version}</version> - <scope>test</scope> - </dependency> - - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>4.12</version> - <scope>test</scope> - </dependency> - - <!-- Karaf Container --> - <dependency> - <groupId>org.ops4j.pax.exam</groupId> - <artifactId>pax-exam-container-karaf</artifactId> - <version>${pax.exam.version}</version> - <scope>test</scope> - </dependency> - - <dependency> - <groupId>org.ops4j.pax.exam</groupId> - <artifactId>pax-exam-inject</artifactId> - <version>${pax.exam.version}</version> - <scope>test</scope> - </dependency> - - <dependency> - <groupId>org.ops4j.pax.exam</groupId> - <artifactId>pax-exam-extender-service</artifactId> - <version>${pax.exam.version}</version> - <scope>test</scope> - </dependency> - - <!-- Preferred link because it does not require an mvn url handler implicitely. --> - <dependency> - <groupId>org.ops4j.pax.exam</groupId> - <artifactId>pax-exam-link-mvn</artifactId> - <version>${pax.exam.version}</version> - <scope>test</scope> - </dependency> - - <dependency> - <groupId>org.ops4j.pax.exam</groupId> - <artifactId>pax-exam-link-assembly</artifactId> - <version>${pax.exam.version}</version> - <scope>test</scope> - </dependency> - - <dependency> - <groupId>ch.qos.logback</groupId> - <artifactId>logback-classic</artifactId> - <version>${logback.version}</version> - <scope>test</scope> - </dependency> - - <dependency> - <groupId>javax.inject</groupId> - <artifactId>javax.inject</artifactId> - <version>1</version> <!-- TODO: version property? --> - <scope>test</scope> - </dependency> - - <dependency> - <groupId>org.osgi</groupId> - <artifactId>org.osgi.core</artifactId> - <version>${org.osgi.core.version}</version> - <scope>provided</scope> - </dependency> - - <dependency> - <groupId>org.osgi</groupId> - <artifactId>org.osgi.compendium</artifactId> - <version>${org.osgi.compendium.version}</version> - <scope>provided</scope> - </dependency> - - <!-- framework to test with --> - <dependency> - <groupId>org.apache.karaf.features</groupId> - <artifactId>standard</artifactId> - <version>${karaf.version}</version> - <type>xml</type> - <classifier>features</classifier> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.apache.karaf.features</groupId> - <artifactId>org.apache.karaf.features.core</artifactId> - <version>${karaf.version}</version> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.apache.karaf.system</groupId> - <artifactId>org.apache.karaf.system.core</artifactId> - <version>${karaf.version}</version> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.apache.karaf</groupId> - <artifactId>apache-karaf</artifactId> - <version>${karaf.version}</version> - <type>zip</type> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>org.apache.karaf.shell</groupId> - <artifactId>org.apache.karaf.shell.dev</artifactId> - </exclusion> - </exclusions> - </dependency> - - <!-- project deps --> - <dependency> - <groupId>${project.groupId}</groupId> - <artifactId>brooklyn-features</artifactId> - <version>${project.version}</version> - <type>xml</type> - <classifier>features</classifier> - <scope>test</scope> - </dependency> - - <dependency> - <groupId>${project.groupId}</groupId> - <artifactId>apache-brooklyn</artifactId> - <version>${project.version}</version> - <type>zip</type> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.apache.geronimo.specs</groupId> - <artifactId>geronimo-jta_1.1_spec</artifactId> - <version>${geronimo-jta_1.1_spec.version}</version> - <scope>test</scope> - </dependency> - <dependency> - <groupId>${project.groupId}</groupId> - <artifactId>brooklyn-rest-resources</artifactId> - <version>${project.version}</version> - <scope>test</scope> - </dependency> - <dependency> - <groupId>${project.groupId}</groupId> - <artifactId>brooklyn-rest-resources</artifactId> - <version>${project.version}</version> - <classifier>tests</classifier> - <scope>test</scope> - </dependency> - <dependency> - <groupId>${project.groupId}</groupId> - <artifactId>brooklyn-utils-common</artifactId> - <version>${project.version}</version> - <scope>test</scope> - </dependency> - - <dependency> - <groupId>org.ops4j.pax.tinybundles</groupId> - <artifactId>tinybundles</artifactId> - <version>${tinybundles.version}</version> - <scope>test</scope> - </dependency> - </dependencies> - - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <configuration> - <source>${maven.compiler.source}</source> - <target>${maven.compiler.target}</target> - </configuration> - </plugin> - - <plugin> - <groupId>org.apache.servicemix.tooling</groupId> - <artifactId>depends-maven-plugin</artifactId> - <version>1.2</version> - <executions> - <execution> - <id>generate-depends-file</id> - <goals> - <goal>generate-depends-file</goal> - </goals> - </execution> - </executions> - </plugin> - - <plugin> - <artifactId>maven-surefire-plugin</artifactId> - <configuration> - <groups>${includedTestGroups}</groups> - <excludedGroups>${excludedTestGroups}</excludedGroups> - <systemPropertyVariables> - <org.ops4j.pax.url.mvn.localRepository>${settings.localRepository}</org.ops4j.pax.url.mvn.localRepository> - </systemPropertyVariables> - </configuration> - </plugin> - </plugins> - </build> - - <profiles> - <profile> - <id>Integration</id> - <properties> - <includedTestGroups>org.apache.brooklyn.test.IntegrationTest</includedTestGroups> - <excludedTestGroups /> - </properties> - </profile> - </profiles> -</project>
