Getting Started¶
The easiest way to start using jeo is by declaring a dependency with your build tool of choice.
Maven¶
Applications using the Maven build system must first add the Boundless
maven repository the project pom.xml.
<repositories>
<repository>
<id>boundless</id>
<name>Boundless Maven Repository</name>
<url>http://repo.boundlessgeo.com/main</url>
</repository>
</repositories>
And then declare the dependency on jeo.
<dependency>
<groupId>org.jeo</groupId>
<artifactId>jeo</artifactId>
<version>0.5</version>
</dependency>
Gradle¶
Applications using the Gradle build system must add the Central and
Boundless maven repositories to build.gradle.
repositories {
mavenCentral()
maven {
url 'http://repo.boundlessgeo.com/main'
}
}
And then declare the dependency on jeo.
dependencies {
compile group: 'org.jeo', name: 'jeo', version: '0.5'
}