Tag release 1.0.0
Tag release 1.0.0 release candidate 3
Merge pull request #1084 from nakomis/change-packaging-to-pom

Changes packing from feature to pom
1 file changed
tree: 0c1751bbc5c9800d137a8075ab444346d55992a6
  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. Jenkinsfile
  22. LICENSE
  23. NOTICE
  24. pom.xml
  25. 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