This repository contains the main sources of the flexible VM scheduler BtrPlace (see http://www.btrplace.org)
Contact: fabien.hermenier@nutanix.com
Releases are available via Maven Central.
Snapshot versions are only available through a dedicated repository. Add the following entry in your pom.xml
to get
them:
<repositories>
<repository>
<id>sonatype-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<layout>default</layout>
</repository>
</repositories>
Next, just declare the useful dependencies:
org.btrplace:scheduler-api
: the API defining a VM scheduler and the element it manipulatesorg.btrplace:scheduler-choco
: the default implementation of the VM scheduler using the Constraint Programming
solver Chocoorg.btrplace:scheduler-json
: to serialize models using JSONorg.btrplace:scheduler-split
: to split the instances to solveorg.btrplace:btrpsl
: a scripting language to express constraintsorg.btrplace:bench
: a simple CLI to perform benchmarksorg.btrplace:scheduler-examples
: the examples illustrated in the tutorials sectionSee the tutorials
See the wiki
Anyone can contribute to the project, from the source code to the documentation. In order to ease the process, see the contribution guide.
Requirements:
The source of the released versions are directly available in the Tag
section.
You can also download them using github features.
Once downloaded, move to the source directory then execute the following command
to make the jar:
$ mvn clean install
If the build succeeded, the resulting jars will be automatically installed in your local maven repository.
Copyright (c) The BtrPlace Authors. All rights reserved. Use of this source code is governed by a LGPL-style license that can be found in the LICENSE.txt file.