-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
32 lines (19 loc) · 839 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name := "rdf-processor"
version := "0.6.1"
organization := "com.elegantcoding"
scalaVersion := "2.11.1"
scalacOptions ++= Seq("-encoding", "UTF-8", "-deprecation", "-unchecked", "-feature")
publishTo := Some(Resolver.file("file", new File( "c:/usr/elegantcoding.github.io/repo/releases" )) )
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "2.2.0" % "test",
"commons-io" % "commons-io" % "2.4"
)
seq(lsSettings :_*)
(LsKeys.tags in LsKeys.lsync) := Seq("rdf", "ntriples", "nquads")
(description in LsKeys.lsync) :=
"generic RDF processor."
(externalResolvers in LsKeys.lsync) := Seq(
"elegantcoding releases" at "http://elegantcoding.github.io/repo/releases")
instrumentSettings
coverallsSettings
CoverallsKeys.coverallsToken := Some("KmSfzLvg19I8FOs6PX94bbdZbwcR0ly01")