Downloads
Download Version 1.0.0-SNAPSHOT
Download | File/Format | checksums (?) |
---|---|---|
Binary distribution Server & client |
apache-brooklyn-1.0.0-SNAPSHOT-bin.tar.gz | SHA1 |
apache-brooklyn-1.0.0-SNAPSHOT-bin.zip | SHA1 | |
RPM package CentOS7, RHEL7, etc. |
apache-brooklyn-1.0.0-SNAPSHOT-1.noarch.rpm | SHA1 |
DEB package Ubuntu, Debian, etc. |
apache-brooklyn-1.0.0-SNAPSHOT.all.deb | SHA1 |
Client CLI only | apache-brooklyn-1.0.0-SNAPSHOT-client-cli-linux.tar.gz | SHA1 |
apache-brooklyn-1.0.0-SNAPSHOT-client-cli-linux.zip | SHA1 | |
apache-brooklyn-1.0.0-SNAPSHOT-client-cli-macosx.tar.gz | SHA1 | |
apache-brooklyn-1.0.0-SNAPSHOT-client-cli-macosx.zip | SHA1 | |
apache-brooklyn-1.0.0-SNAPSHOT-client-cli-windows.tar.gz | SHA1 | |
apache-brooklyn-1.0.0-SNAPSHOT-client-cli-windows.zip | SHA1 | |
Source code | apache-brooklyn-1.0.0-SNAPSHOT-src.tar.gz | SHA1 |
apache-brooklyn-1.0.0-SNAPSHOT-src.zip | SHA1 |
Release Notes
Release notes can be found here.
Maven
If you use Maven, you can add Brooklyn with the following in your pom:
<!-- include all Brooklyn items in our project -->
<dependencies>
<dependency>
<groupId>org.apache.brooklyn</groupId>
<artifactId>brooklyn-all</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
</dependencies>
brooklyn-all
brings in all dependencies, including jclouds.
If you prefer a smaller repo you might want just brooklyn-core
, brooklyn-policies
,
and some of brooklyn-software-webapp
, brooklyn-software-database
, brooklyn-software-messaging
, or others
(browse the full list here).
If you wish to use the Apache snapshot repo, you can add this to you pom.xml
:
<!-- include repos for snapshot items and other dependencies -->
<repositories>
<repository>
<id>apache-nexus-snapshots</id>
<name>Apache Nexus Snapshots</name>
<url>https://repository.apache.org/content/repositories/snapshots</url>
<releases> <enabled>false</enabled> </releases>
<snapshots> <enabled>true</enabled> </snapshots>
</repository>
</repositories>
Source Code
Source code is hosted at github.com/apache/brooklyn,
with this version in branch .
These locations have a README.md
in the root which explains how to get the code including
submodules.
Useful information on working with the source is here.