-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
78 lines (52 loc) · 2.28 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
name := "rdfp"
version := "1.0"
organization := "com.github.jannvck"
scalaVersion := "2.11.7"
libraryDependencies += "org.apache.jena" % "apache-jena-libs" % "2.13.0"
libraryDependencies += "org.openrdf.sesame" % "sesame-queryalgebra-evaluation" % "2.8.3"
libraryDependencies += "org.openrdf.sesame" % "sesame-queryparser-sparql" % "2.8.3"
libraryDependencies += "org.openrdf.sesame" % "sesame-queryresultio-sparqljson" % "2.8.3"
libraryDependencies += "org.openrdf.sesame" % "sesame-rio-turtle" % "2.8.3"
libraryDependencies += "org.openrdf.sesame" % "sesame-rio-rdfxml" % "2.8.3"
libraryDependencies += "org.openrdf.sesame" % "sesame-sail-memory" % "2.8.3"
libraryDependencies += "org.openrdf.sesame" % "sesame-sail-nativerdf" % "2.8.3"
libraryDependencies += "org.openrdf.sesame" % "sesame-repository-sail" % "2.8.3"
libraryDependencies += "org.apache.lucene" % "lucene-core" % "5.2.1"
libraryDependencies += "org.apache.lucene" % "lucene-analyzers-common" % "5.2.1"
libraryDependencies += "org.apache.lucene" % "lucene-queryparser" % "5.2.1"
libraryDependencies += "com.j256.ormlite" % "ormlite-core" % "4.48"
libraryDependencies += "com.j256.ormlite" % "ormlite-jdbc" % "4.48"
libraryDependencies += "com.h2database" % "h2" % "1.4.187"
libraryDependencies += "org.scalatest" % "scalatest_2.11" % "2.2.4" % "test"
libraryDependencies += "com.typesafe.akka" %% "akka-actor" % "2.3.11"
scalacOptions in (Compile,doc) := Seq("-groups", "-implicits")
publishMavenStyle := true
publishTo := {
val nexus = "https://oss.sonatype.org/"
if (isSnapshot.value)
Some("snapshots" at nexus + "content/repositories/snapshots")
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
}
publishArtifact in Test := false
pomIncludeRepository := { _ => false }
pomExtra := (
<url>https://github.com/jannvck/rdfp</url>
<licenses>
<license>
<name>EPL</name>
<url>http://www.eclipse.org/legal/epl-v10.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>git@github.com:jannvck/rdfp.git</url>
<connection>scm:git:git@github.com:jannvck/rdfp.git</connection>
</scm>
<developers>
<developer>
<id>jannvck</id>
<name>Jan Novacek</name>
<url>https://github.com/jannvck</url>
</developer>
</developers>)