Skip to content
This repository has been archived by the owner on Sep 12, 2021. It is now read-only.

Commit

Permalink
Merge pull request #38 from akkie/master
Browse files Browse the repository at this point in the history
Release snapshot version
  • Loading branch information
akkie committed Jun 3, 2015
2 parents 350ea7f + 24a37fb commit b7575f3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 22 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -15,7 +15,7 @@ If you want to use the latest snapshot, add the following instead:
resolvers += "Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/"

libraryDependencies ++= Seq(
"com.mohiva" %% "play-html-compressor" % "0.4-SNAPSHOT"
"com.mohiva" %% "play-html-compressor" % "0.4.1-SNAPSHOT"
)
```

Expand Down
16 changes: 4 additions & 12 deletions build.sbt
Expand Up @@ -13,8 +13,8 @@ version := "0.4.1-SNAPSHOT"
libraryDependencies ++= Seq(
"com.googlecode.htmlcompressor" % "htmlcompressor" % "1.5.2",
"rhino" % "js" % "1.7R2",
specs2 % Test,
"org.easytesting" % "fest-assert" % "1.4" % Test
"org.easytesting" % "fest-assert" % "1.4" % Test,
specs2 % Test
)

// org.scalaz.stream#scalaz-stream_2.11 is not in not in maven central or any other repositories
Expand Down Expand Up @@ -56,21 +56,13 @@ pomIncludeRepository := { _ => false }

pomExtra := pom

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

//*******************************
// Test settings
//*******************************

parallelExecution in Test := false

//*******************************
// Compiler settings
//*******************************

scalaVersion := "2.11.1"
scalaVersion := "2.11.6"

crossScalaVersions := Seq("2.10.4", "2.11.4")
crossScalaVersions := Seq("2.10.5", "2.11.6")

scalacOptions ++= Seq(
"-deprecation", // Emit warning and location for usages of deprecated APIs.
Expand Down
11 changes: 2 additions & 9 deletions project/plugins.sbt
@@ -1,19 +1,12 @@
// Comment to get more information during initialization
logLevel := Level.Warn

// The Typesafe repository
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/"

// The Sonatype repository
resolvers += "Sonatype snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/"

// Use the Play sbt plugin for Play projects
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.4.0")

addSbtPlugin("com.typesafe.sbt" % "sbt-scalariform" % "1.2.1")
addSbtPlugin("com.typesafe.sbt" % "sbt-scalariform" % "1.3.0")

addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "0.2.1")

addSbtPlugin("com.typesafe.sbt" % "sbt-pgp" % "0.8.1")

addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.7.0-SNAPSHOT")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "0.2.2")

0 comments on commit b7575f3

Please sign in to comment.