Skip to content

Latest commit

 

History

History
56 lines (35 loc) · 1.35 KB

develop.md

File metadata and controls

56 lines (35 loc) · 1.35 KB

Developing the rdf-toolkit

develop

The primary development IDE used for this project is [IntelliJ IDEA (http://www.jetbrains.com/idea/). Also install their Scala plugin.

build

This project is being build and packaged on the EDM Council Jenkins Server by this job.

The current Jenkins build status is: Build Status

test

You can run the rdf-toolkit without first packaging it as a jar (see "package" below) by launching it via sbt:

sbt "run --help"

All the unit tests can be executed by this command:

sbt test

package

normal packaging

Normal packaging as a jar is done with the following command:

sbt package

This creates a jar file like:

./target/scala-2.11/rdf-toolkit_2.11-<version>.jar

packaging as "uber jar"

The RDF Toolkit is packaged as one "fat jar" or "uber jar" which can be downloaded from the EDM Council Jenkins server:

You can create this uber jar from the command line yourself as well:

sbt assembly