Skip to content

Installation

Jim Pivarski edited this page Jul 30, 2015 · 10 revisions

How to install Hadrian

Case 1: You want to use Hadrian as a library in your JVM-based project

Hadrian has these coordinates:

  • Group id: com.opendatagroup
  • Artifact id: hadrian
  • Version: 0.7.1

in this repository: http://repository.opendatagroup.com/maven

In Maven, you can add Hadrian by including the following in your pom.xml's <dependencies> section:

<dependency>
  <groupId>com.opendatagroup</groupId>
  <artifactId>hadrian</artifactId>
  <version>0.7.1</version>
</dependency>

and the following in its <repositories> section (create one if necessary):

<repository>
  <id>opendatagroup</id>
  <url>http://repository.opendatagroup.com/maven</url>
</repository>

Hadrian was built against Scala 2.10.4, so this is the version of scala-library that will be brought in as a dependency.

If you are using a different build system than Maven, use these coordinates in your build system.

Case 2: You want to use pre-built JAR files for a Hadrian container

The latest Hadrian version is 0.7.1. The latest JAR files can be found here. In particular, use

Clone this wiki locally