Skip to content

Commit

Permalink
republishing for 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ph2734 committed Jul 5, 2012
1 parent 563dba2 commit 7a539ad
Show file tree
Hide file tree
Showing 12 changed files with 24 additions and 21 deletions.
8 changes: 4 additions & 4 deletions dust/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ This plugin provides build time compilation for [Dust](https://github.com/akduby


# How to install

(requires play 2.0.2)
* add
```addSbtPlugin("com.typesafe" % "play-plugins-dust" % "1.0-SNAPSHOT")
```addSbtPlugin("com.typesafe" % "play-plugins-dust" % "1.4")
``` to your dependencies
# How to Use
* Include dust. Note that this is not provided by the sbt plugin. It can be found here: [dust-core-0.3.0.min.js](https://github.com/akdubya/dustjs/blob/master/dist/dust-core-0.3.0.min.js)
* Include dust. Note that this is not provided by the sbt plugin. It can be found here: [dust-core-0.6.0.min.js](https://github.com/akdubya/dustjs/blob/master/dist/dust-core-0.3.0.min.js)
```<script src="@routes.Assets.at("javascripts/dust-core-0.6.0.min.js")"></script>
```

Expand Down Expand Up @@ -46,4 +46,4 @@ Copyright 2012 Typesafe (http://www.typesafe.com).

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this project except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
4 changes: 2 additions & 2 deletions dust/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ sbtPlugin := true

name := "play-plugins-dust"

version := "1.4-SNAPSHOT"
version := "1.4"

organization := "com.typesafe"

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

libraryDependencies <++= (scalaVersion, sbtVersion) {
case (scalaVersion, sbtVersion) => Seq(
sbtPluginExtra("play" % "sbt-plugin" % "2.0", sbtVersion, scalaVersion)
sbtPluginExtra("play" % "sbt-plugin" % "2.0.2", sbtVersion, scalaVersion)
)
}

Expand Down
4 changes: 2 additions & 2 deletions guice/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ play.Play.application().plugin(InjectPlugin.class).getInstance(MyServiceInterfac
```

# How to install

(requires 2.0.2)
* add
```"com.typesafe" % "play-plugins-guice" % "2.0.2"``` to your dependencies
```"com.typesafe" % "play-plugins-guice" % "2.0.3"``` to your dependencies

* create a file called ```play.plugins``` in your ```app/conf``` directory

Expand Down
4 changes: 2 additions & 2 deletions guice/project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import Keys._

object MinimalBuild extends Build {

lazy val buildVersion = "2.0.2"
lazy val playVersion = "2.0.1"
lazy val buildVersion = "2.0.3"
lazy val playVersion = "2.0.2"



Expand Down
2 changes: 1 addition & 1 deletion inject/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ play.Play.application().plugin(InjectPlugin.class).getInstance(MyServiceInterfac
```

# How to install

(requires play 2.0.2)
* add
```"com.typesafe" % "play-plugins-inject" % "2.0.2"``` to your dependencies

Expand Down
4 changes: 2 additions & 2 deletions inject/project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import Keys._

object MinimalBuild extends Build {

lazy val buildVersion = "2.0.2"
lazy val playVersion = "2.0.1"
lazy val buildVersion = "2.0.3"
lazy val playVersion = "2.0.2"

lazy val typesafeSnapshot = "Typesafe Snapshots Repository" at "http://repo.typesafe.com/typesafe/snapshots/"
lazy val typesafe = "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"
Expand Down
4 changes: 3 additions & 1 deletion mailer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
This plugin provides a simple emailer.

## installation
* add ```"com.typesafe" %% "play-plugins-mailer" % "2.0.2"``` to your dependencies (```project/Build.scala```)
(requiring play 2.0.2)

* add ```"com.typesafe" %% "play-plugins-mailer" % "2.0.3"``` to your dependencies (```project/Build.scala```)
* add ```1500:com.typesafe.plugin.CommonsMailerPlugin``` to your ```conf/play.plugins```

furthermore, the following parameters can be configured in ```conf/application.conf```
Expand Down
4 changes: 2 additions & 2 deletions mailer/project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import Keys._

object MinimalBuild extends Build {

lazy val buildVersion = "2.0.2"
lazy val playVersion = "2.0.1"
lazy val buildVersion = "2.0.3"
lazy val playVersion = "2.0.2"

lazy val typesafeSnapshot = "Typesafe Snapshots Repository" at "http://repo.typesafe.com/typesafe/snapshots/"
lazy val typesafe = "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"
Expand Down
2 changes: 1 addition & 1 deletion mailer/sample/project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ object ApplicationBuild extends Build {
val appVersion = "1.0-SNAPSHOT"

val appDependencies = Seq(
"com.typesafe" %% "play-plugins-mailer" % "2.0"
"com.typesafe" %% "play-plugins-mailer" % "2.0.3-SNAPSHOT"

)

Expand Down
2 changes: 1 addition & 1 deletion mailer/sample/project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ logLevel := Level.Warn
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/"

// Use the Play sbt plugin for Play projects
addSbtPlugin("play" % "sbt-plugin" % "2.0")
addSbtPlugin("play" % "sbt-plugin" % "2.1-SNAPSHOT")
3 changes: 2 additions & 1 deletion util/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ small scala and java utilities that we are using across the board
* provides security implementation based on a request header and/or query parameter (Scala)

# How to install
(requires play 2.0.2)

* add
```"com.typesafe" % "play-plugins-util" % "2.0.1"``` to your dependencies
```"com.typesafe" % "play-plugins-util" % "2.0.3"``` to your dependencies


## Licence
Expand Down
4 changes: 2 additions & 2 deletions util/project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import Keys._

object MinimalBuild extends Build {

lazy val buildVersion = "2.0.2"
lazy val playVersion = "2.0.1"
lazy val buildVersion = "2.0.3"
lazy val playVersion = "2.0.2"
lazy val typesafeSnapshot = "Typesafe Snapshots Repository" at "http://repo.typesafe.com/typesafe/snapshots/"
lazy val typesafe = "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"
lazy val repo = if (buildVersion.endsWith("SNAPSHOT")) typesafeSnapshot else typesafe
Expand Down

0 comments on commit 7a539ad

Please sign in to comment.