Apache Brooklyn Dist

Clone this repo:
  1. 3f463ec tweaks for bump to CXF + karaf versions by Alex Heneveld · 5 months ago master
  2. d5d6f18 use latest bouncycastle - jdk18on by Alex Heneveld · 6 months ago
  3. 43ad448 extra properties to ensure right library for soap is pulled in by Alex Heneveld · 6 months ago
  4. f08f471 refactor the brooklyn node entities in the catalog init by Alex Heneveld · 7 months ago
  5. d158859 add workflow software process to catalog by Alex Heneveld · 7 months ago

Brooklyn

Distribution Sub-Project for Apache Brooklyn

This repo contains modules for creating the distributable binary combining the server, the ui, and other elements in other Brooklyn repos.

Building the project

2 methods are available to build this project: within a docker container or directly with maven.

Using docker

The project comes with a Dockerfile that contains everything you need to build this project. First, build the docker image:

docker build -t brooklyn:dist .

Then run the build:

docker run -i --rm --name brooklyn-dist -v /var/run/docker.sock:/var/run/docker.sock -v ${HOME}/.m2:/root/.m2 -v ${PWD}:/usr/build -w /usr/build brooklyn:dist mvn clean install

Using maven

Simply run:

mvn clean install