Osso may be used in your project in a few different ways.
The latest version of Osso is 1.0.0-SNAPSHOT.
Using Osso with Maven
To use Osso with a Maven-managed project, add the following to your project
pom.xml
file.
<repositories>
<repository>
<id>osso-releases</id>
<url>http://repository.rocana.com/content/repositories/osso</url>
</repository>
<repository>
<id>osso-snapshots</id>
<url>http://repository.rocana.com/content/repositories/osso-snapshots</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.osso-project</groupId>
<artifactId>osso</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
</dependencies>
Using Osso with Gradle
To use Osso with a Gradle-managed project, add the following to your
build.gradle
build file.
repositories {
maven {
name 'osso-releases'
url 'http://repository.rocana.com/content/repositories/osso'
}
maven {
name 'osso-snapshots'
url 'http://repository.rocana.com/content/repositories/osso-snapshots'
}
}
dependencies {
compile group: 'com.osso-project', name: 'osso', version: '1.0.0-SNAPSHOT'
}
Direct Downloads
In addition to the Maven artifacts, it is possible to directly download both source and binary distributions of Osso releases from the Github Releases section of the project page.