Last active
December 11, 2015 03:08
-
-
Save mgonto/4535409 to your computer and use it in GitHub Desktop.
FactoryPal 0.2 build
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sbt._ | |
import sbt.Keys._ | |
object ApplicationBuild extends Build { | |
lazy val root = Project( | |
id = "factory_pal_sample", | |
base = file("."), | |
settings = Project.defaultSettings ++ Seq( | |
name := "factory_pal_sample", | |
organization := "ar.com.gonto", | |
version := "0.2", | |
scalaVersion := "2.10.0", | |
scalacOptions += "", | |
licenses := ("Apache2", new java.net.URL("http://www.apache.org/licenses/LICENSE-2.0.txt")) :: Nil, | |
libraryDependencies ++= Seq( | |
"org.scala-lang" % "scala-compiler" % "2.10.0", | |
"ar.com.gonto" % "factory_pal_2.10" % "0.2.1", | |
"org.scalatest" % "scalatest_2.10" % "1.9.1" % "test" | |
), | |
resolvers ++= Seq( | |
"Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/", | |
Resolver.url("Factory Pal Repository", | |
url("http://mgonto.github.com/releases/"))(Resolver.ivyStylePatterns) | |
) | |
) | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment