Skip to content

Instantly share code, notes, and snippets.

@mgonto
Last active December 9, 2015 22:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mgonto/4340022 to your computer and use it in GitHub Desktop.
Save mgonto/4340022 to your computer and use it in GitHub Desktop.
FactoryPal dependency
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.1",
scalaVersion := "2.10.0-RC3",
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-RC3",
"ar.com.gonto" % "factory_pal_2.10" % "0.1.1-SNAPSHOT",
"org.scalatest" % "scalatest_2.10.0-RC3" % "1.8-B1" % "test"
),
resolvers ++= Seq(
"Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/",
Resolver.url("Factory Pal Repository",
url("http://mgonto.github.com/"))(Resolver.ivyStylePatterns)
)
)
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment