-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
32 lines (22 loc) · 880 Bytes
/
build.sbt
File metadata and controls
32 lines (22 loc) · 880 Bytes
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
organization := "JAVEO"
name := "cubehash"
version := "0.1.0"
licenses := Seq(
("MIT", url(s"https://github.com/${organization.value}/${name.value}/blob/master/LICENSE")))
homepage := Some(url(s"https://github.com/${organization.value}/${name.value}"))
scalacOptions ++= Seq("-deprecation", "-feature", "-unchecked")
crossScalaVersions := Seq("2.10.4", "2.11.5")
scalaVersion := crossScalaVersions.value.last
libraryDependencies ++= Seq("org.scalatest" %% "scalatest" % "2.2.1" % "test")
pomExtra := (
<scm>
<url>git@github.com:{organization.value}/{name.value}.git</url>
<connection>scm:git:git@github.com:{organization.value}/{name.value}.git</connection>
</scm>
<developers>
<developer>
<id>{organization.value}</id>
<name>Jacek Zadrag</name>
<url>https://github.com/{organization.value}</url>
</developer>
</developers>)