-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.sbt
43 lines (29 loc) · 1.13 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
name := "b-tree"
version := "0.5"
scalaVersion := "2.12.6"
scalacOptions ++= Seq( "-deprecation", "-feature", "-language:postfixOps", "-language:implicitConversions", "-language:existentials" )
organization := "xyz.hyperreal"
resolvers += "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"
resolvers += "Hyperreal Repository" at "https://dl.bintray.com/edadma/maven"
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.0.0" % "test",
"org.scalacheck" %% "scalacheck" % "1.13.4" % "test"
)
mainClass in (Compile, run) := Some( "xyz.hyperreal." + "btree" + ".TestMain" )
publishMavenStyle := true
publishArtifact in Test := false
pomIncludeRepository := { _ => false }
licenses := Seq("ISC" -> url("https://opensource.org/licenses/ISC"))
homepage := Some(url("https://github.com/edadma/b-tree"))
pomExtra :=
<scm>
<url>git@github.com:edadma/b-tree.git</url>
<connection>scm:git:git@github.com:edadma/b-tree.git</connection>
</scm>
<developers>
<developer>
<id>edadma</id>
<name>Edward A. Maxedon, Sr.</name>
<url>https://github.com/edadma</url>
</developer>
</developers>