https://github.com/openmole/mgo
Raw File
Tip revision: 2f4f5c0a2240327ed19a28233aa4b34b2da5d96c authored by Romain Reuillon on 04 February 2014, 10:17:35 UTC
Setting version to 1.69
Tip revision: 2f4f5c0
build.sbt
organization := "fr.iscpif"

name := "mgo"

scalaVersion := "2.10.3"

resolvers ++= Seq(
  "Scala Tools Snapshots" at "http://scala-tools.org/repo-snapshots/"
)

libraryDependencies += "com.github.scala-incubator.io" % "scala-io-core_2.10" % "0.4.2"

libraryDependencies += "org.apache.commons" % "commons-math3" % "3.2"

libraryDependencies += "org.scalaz" %% "scalaz-core" % "7.0.3"

publishMavenStyle := true

publishArtifact in Test := false

publishTo <<= version { (v: String) =>
  val maven = "http://maven.iscpif.fr/"
  if (v.trim.endsWith("SNAPSHOT")) Some("snapshots" at maven + "snapshots") 
  else Some("releases"  at maven + "releases")
}

pomExtra := (
  <url>https://github.com/romainreuillon/mgo</url>
  <licenses>
    <license>
      <name>Affero GPLv3</name>
      <url>http://www.gnu.org/licenses/</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <scm>
    <url>git@github.com:romainreuillon/mgo.git</url>
    <connection>scm:git:git@github.com:romainreuillon/mgo.git</connection>
  </scm>
  <developers>
    <developer>
      <id>romainreuillon</id>
      <name>Romain Reuillon</name>
    </developer>
  </developers>
)


credentials += Credentials(Path.userHome / ".sbt" / "iscpif.credentials")

scalariformSettings

releaseSettings
back to top