Download

MozartSpaces is distributed under the GNU Affero General Public License (AGPL) Version 3. It can be downloaded here or included in your project's POM and automatically downloaded from our Maven repository.

Download packages for MozartSpaces 2.1-SNAPSHOT

NameFileDescription
binary jar (all)mozartspaces-dist-2.1-SNAPSHOT-r11986-all.jarjar archive containing all MozartSpaces modules.
binary jar (all with dependencies)mozartspaces-dist-2.1-SNAPSHOT-r11986-all-with-dependencies.jarjar archive containing all MozartSpaces modules and all dependencies.
binary jar (core)mozartspaces-dist-2.1-SNAPSHOT-r11986-core.jarjar archive containing the core MozartSpaces modules.
javadoc jarmozartspaces-dist-2.1-SNAPSHOT-r11986-all-javadoc.jarjar archive containing the javadocs for all MozartSpaces modules.
source tar.bz2mozartspaces-dist-2.1-SNAPSHOT-r11986-all-sources.tar.bz2tar.bz2 archive containing the source code for all MozartSpaces modules.
source tar.gzmozartspaces-dist-2.1-SNAPSHOT-r11986-all-sources.tar.gztar.gz archive containing the source code for all MozartSpaces modules.
source zipmozartspaces-dist-2.1-SNAPSHOT-r11986-all-sources.zipzip archive containing the source code for all MozartSpaces modules.

MozartSpaces and Maven

If you are using Maven you can download MozartSpaces from our repository. Add it to your project's pom.xml:

<repositories>
  <repository>
    <id>mozartspaces</id>
    <url>http://www.mozartspaces.org/maven-snapshots</url>
  </repository>
</repositories>

To use the MozartSpaces core, add the following to the pom.xml:

<dependencies>
  <dependency>
    <groupId>org.mozartspaces</groupId>
    <artifactId>mozartspaces-runtime</artifactId>
    <version>2.1-SNAPSHOT</version>
  </dependency>
</dependencies>

For notifications and the XML communication protocol, you need to add the respective dependency:

<dependencies>
  <dependency>
    <groupId>org.mozartspaces</groupId>
    <artifactId>mozartspaces-notifications</artifactId>
    <version>2.1-SNAPSHOT</version>
  </dependency>
  <dependency>
    <groupId>org.mozartspaces</groupId>
    <artifactId>mozartspaces-xvsmp-jaxb</artifactId>
    <version>2.1-SNAPSHOT</version>
  </dependency>
</dependencies>