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

Commit

Permalink
Release version 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
akkie committed Oct 5, 2015
1 parent dedc3c6 commit 896e367
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 17 deletions.
15 changes: 3 additions & 12 deletions README.md
@@ -1,27 +1,18 @@
# Google's HTML (and XML) Compressor for Play Framework 2[![Build Status](https://travis-ci.org/mohiva/play-html-compressor.png)](https://travis-ci.org/mohiva/play-html-compressor)
# Google's HTML (and XML) Compressor for Play Framework 2 [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.mohiva/play-html-compressor_2.11/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.mohiva/play-html-compressor_2.11) [![Build Status](https://travis-ci.org/mohiva/play-html-compressor.png)](https://travis-ci.org/mohiva/play-html-compressor)
[![Gitter](https://badges.gitter.im/Join Chat.svg)](https://gitter.im/mohiva/play-html-compressor?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

## Installation

In your project/Build.scala:
```scala
libraryDependencies ++= Seq(
"com.mohiva" %% "play-html-compressor" % "0.3.1"
)
```

If you want to use the latest snapshot, add the following instead:
```scala
resolvers += "Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/"

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

### History

* For Play Framework 2.4 use version 0.4.1-SNAPSHOT
* For Play Framework 2.4 use version 0.4.1
* For Play Framework 2.3 use version 0.3.1
* For Play Framework 2.2 use version 0.2.1
* For Play Framework 2.1 use version 0.1-SNAPSHOT
Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Expand Up @@ -8,7 +8,7 @@ import xerial.sbt.Sonatype._

name := "play-html-compressor"

version := "0.4.1-SNAPSHOT"
version := "0.4.1"

libraryDependencies ++= Seq(
"com.googlecode.htmlcompressor" % "htmlcompressor" % "1.5.2",
Expand Down Expand Up @@ -61,9 +61,9 @@ pomExtra := pom
// Compiler settings
//*******************************

scalaVersion := "2.11.6"
scalaVersion := "2.11.7"

crossScalaVersions := Seq("2.10.5", "2.11.6")
crossScalaVersions := Seq("2.10.5", "2.11.7")

scalacOptions ++= Seq(
"-deprecation", // Emit warning and location for usages of deprecated APIs.
Expand Down
6 changes: 4 additions & 2 deletions project/plugins.sbt
Expand Up @@ -5,8 +5,10 @@ resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/release

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

addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.4.0")
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.4.3")

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

addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "0.2.2")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "0.5.1")

addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")

0 comments on commit 896e367

Please sign in to comment.