Tag release 1.0.0-M1 release candidate 1
Fix DSL recursive-reference detection
3 files changed
tree: ad0d901f262b91427caca23ff81a012893110026
  1. .mvn/
  2. api/
  3. camp/
  4. core/
  5. karaf/
  6. launcher/
  7. launcher-common/
  8. locations/
  9. logging/
  10. parent/
  11. policy/
  12. rest/
  13. server-cli/
  14. software/
  15. test-framework/
  16. test-support/
  17. utils/
  18. .gitattributes
  19. .gitignore
  20. Dockerfile
  21. LICENSE
  22. NOTICE
  23. pom.xml
  24. README.md
README.md

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

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: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