Skip to content

Commit

Permalink
Merge pull request #25 from balhoff/updates
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
balhoff authored Oct 16, 2020
2 parents 2dd7dc4 + dc197de commit 10d9ef4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
10 changes: 7 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ organization := "org.renci"

name := "blazegraph-runner"

version := "1.6"
version := "1.6.1"

licenses := Seq("BSD-3-Clause" -> url("https://opensource.org/licenses/BSD-3-Clause"))

homepage := Some(url("https://github.com/balhoff/blazegraph-runner"))

scalaVersion := "2.13.1"
scalaVersion := "2.13.3"

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

Expand All @@ -23,12 +23,16 @@ fork in Test := true
libraryDependencies ++= {
Seq(
"com.blazegraph" % "bigdata-core" % "2.1.4" exclude("org.slf4j", "slf4j-log4j12"),
"net.sourceforge.owlapi" % "owlapi-distribution" % "4.5.16",
"org.backuity.clist" %% "clist-core" % "3.5.1",
"org.backuity.clist" %% "clist-macros" % "3.5.1" % "provided",
"com.typesafe.akka" %% "akka-stream" % "2.6.1",
"org.geneontology" %% "arachne" % "1.2.1",
"org.geneontology" %% "whelk" % "0.4",
"org.geneontology" %% "whelk-owlapi" % "1.0.3",
"com.outr" %% "scribe-slf4j" % "2.7.10",
"org.apache.jena" % "apache-jena-libs" % "3.13.1" pomOnly()
)
}

// Later OWL API versions are not compatible with Blazegraph's Sesame dependency
dependencyOverrides += "net.sourceforge.owlapi" % "owlapi-distribution" % "4.5.16"
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
sbt.version=1.3.7
sbt.version=1.4.0

2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.5.2")
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.7.5")
2 changes: 1 addition & 1 deletion src/main/scala/org/renci/blazegraph/Main.scala
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import org.backuity.clist._
object Main extends App {

try {
Cli.parse(args).withProgramName("blazegraph-runner").withCommands(Load, Dump, Select, Construct, Update, Reason).foreach(_.run)
Cli.parse(args).withProgramName("blazegraph-runner").withCommands(Load, Dump, Select, Construct, Update, Reason).foreach(_.run())
} catch {
case e =>
e.printStackTrace()
Expand Down

0 comments on commit 10d9ef4

Please sign in to comment.