-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
21 lines (17 loc) · 871 Bytes
/
build.sbt
File metadata and controls
21 lines (17 loc) · 871 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import Dependencies._
ThisBuild / scalaVersion := "2.13.1"
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / organization := "com.example"
ThisBuild / organizationName := "example"
lazy val root = (project in file("."))
.settings(
name := "SPARQL_examples",
mainClass := Some("example.GuiExamples"),
libraryDependencies += scalaTest % Test,
libraryDependencies += "org.apache.jena" % "apache-jena-libs" % "3.13.1" pomOnly(),
libraryDependencies += "org.slf4j" % "slf4j-api" % "1.7.29",
libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.1.3" % Runtime,
libraryDependencies += "org.scala-lang.modules" %% "scala-swing" % "2.1.1",
libraryDependencies += "org.apache.jena" % "jena-fuseki-main" % "3.13.1",
)
// See https://www.scala-sbt.org/1.x/docs/Using-Sonatype.html for instructions on how to publish to Sonatype.