Skip to content

apache/brooklyn-server

Folders and files

NameName
Last commit message
Last commit date
May 30, 2024
Jan 22, 2025
Jan 22, 2025
Nov 25, 2024
Jan 30, 2024
Jan 22, 2025
Jan 30, 2024
Jan 30, 2024
Feb 22, 2024
Jan 30, 2024
Jan 21, 2025
Jan 30, 2024
Feb 6, 2025
Jan 30, 2024
Jan 30, 2024
Jan 20, 2025
May 28, 2015
May 4, 2022
Jan 26, 2024
Apr 10, 2024
Mar 27, 2023
Jun 2, 2020
Jun 2, 2020
Sep 15, 2021
Apr 5, 2024

Brooklyn

Apache Brooklyn Server Sub-Project

This repo contains the core elements to run a Brooklyn server, from the API and utils through to the core implementation and the REST server.

Building the project

Two 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:server .

Then run the build:

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

Using maven

Simply run:

mvn clean install