forked from marklister/product-collections
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
42 lines (25 loc) · 1.01 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
//import SiteKeys._
Boilerplate.settings
resolvers += "Sonatype snapshots" at "http://oss.sonatype.org/content/repositories/snapshots/"
libraryDependencies ++= Seq(
"org.specs2" %% "specs2" % "1.14" % "test",
"org.scalacheck" %% "scalacheck" % "1.10.0" % "test",
"junit" % "junit" % "4.7" % "test"
)
libraryDependencies ++= Seq("net.sf.opencsv" % "opencsv" % "2.3")
scalaVersion:="2.10.3"
crossScalaVersions := Seq( "2.10.3")
version := "0.0.4.4-SNAPSHOT"
name := "product-collections"
organization :="org.catch22"
publishTo := Some(Resolver.file("file", new File("src/site")))
initialCommands in console := """
import org.catch22.collections.io._
import org.catch22.collections._
"""
//site.settings
//ghpages.settings
//git.remoteRepo := "[email protected]:marklister/product-collections.git"
//includeFilter in makeSite ~= { f => f || "*.jar" || "*"}
resolvers += "jgit-repo" at "http://download.eclipse.org/jgit/maven"
resolvers += "ibiblio-maven-mirror" at "http://mirrors.ibiblio.org"