Skip to content

Latest commit

 

History

History
49 lines (30 loc) · 1.21 KB

develop.md

File metadata and controls

49 lines (30 loc) · 1.21 KB

Developing the rdf-toolkit

develop

The primary development IDE used for this project is IntelliJ IDEA 14.1. 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

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 Serializer is packaged as one "fat jar" or "uber jar" which can be downloaded from the Jenkins server:

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

sbt assembly