Skip to content

Commit 30d3c69

Browse files
committed
Merge branch 'master' into queue
2 parents 9b8401e + 48f9314 commit 30d3c69

3 files changed

Lines changed: 9 additions & 5 deletions

File tree

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
[![Build Status](https://travis-ci.com/balhoff/relation-graph.svg?branch=master)](https://travis-ci.com/balhoff/relation-graph)
2-
31
# relation-graph
42

53
Materialize OWL existential relations
@@ -17,3 +15,9 @@ alternatively, the `owl` mode will output RDF, but as a valid OWL structure. The
1715
http://purl.obolibrary.org/obo/BFO_0000050
1816
http://purl.obolibrary.org/obo/BFO_0000051
1917
```
18+
**Note:** Before running, you may need to increase the amount of memory available for Java. On UNIX style systems, this is done by setting the `JAVA_OPTS` environment variable. For example, to set the amount of memory to `16G`, you would use this command: `export JAVA_OPTS=-Xmx16G`.
19+
20+
## Build
21+
Install `sbt` (Scala Build Tool) on your system. For Mac OS X, it is easily done using [Homebrew](http://brew.sh): `brew install sbt`. `sbt` requires a working Java installation, but you do not need to otherwise install Scala.
22+
23+
After `sbt` is installed, run `sbt stage` to create the executable. The executable is created in your `target/universal/stage/bin` directory.

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ version := "1.1"
88

99
licenses := Seq("MIT license" -> url("https://opensource.org/licenses/MIT"))
1010

11-
scalaVersion := "2.13.5"
11+
scalaVersion := "2.13.6"
1212

1313
scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8")
1414

@@ -25,7 +25,7 @@ libraryDependencies ++= {
2525
"dev.zio" %% "zio-interop-monix" % "3.2.2.0-RC2",
2626
"io.monix" %% "monix" % "3.2.2",
2727
"org.geneontology" %% "whelk-owlapi" % "1.1",
28-
"com.outr" %% "scribe-slf4j" % "2.7.13",
28+
"com.outr" %% "scribe-slf4j" % "3.5.5",
2929
"com.github.alexarchambault" %% "case-app" % "2.0.6",
3030
"org.apache.jena" % "apache-jena-libs" % "3.17.0" exclude ("org.slf4j", "slf4j-log4j12"),
3131
"dev.zio" %% "zio-test" % zioVersion % Test,

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.5.0
1+
sbt.version=1.5.2

0 commit comments

Comments
 (0)