Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 9 Next »

Summary

Using the Okapia repo for maven dependencies.

Maven Repository

A maven repository for the OSID and Okapia jars is located at http://repo.okapia.net/artifactory.

Gradle Config
repositories {
    maven {
        url "http://repo.okapia.net/artifactory/ext-release-local"
    }
    maven {
        url "http://repo.okapia.net/artifactory/libs-release-local"
    }
}
 
dependencies {
	compile group: 'org.osid', name: 'OSID', version: '3.0.0rc3'
	compile group: 'net.okapia.osid', name: 'torrefacto', version: '0.2.1'
	compile group: 'net.okapia.osid', name: 'primordium', version: '0.2.3'
	compile group: 'net.okapia.osid', name: 'records', version: '0.2.2'
	compile group: 'net.okapia.osid', name: 'jamocha', version: '0.5.2'
	compile group: 'net.okapia.osid', name: 'kilimanjaro', version: '0.3.2'
    compile group: 'net.okapia.osid', name: 'apodeixis', version: '0.1.0'
}

A description of the various Okapia packages is available in the Java tools section.

  • No labels