Skip to content

Commit

Permalink
release 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gakuzzzz committed Jun 4, 2014
1 parent 01189a3 commit 3781e10
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 15 deletions.
11 changes: 6 additions & 5 deletions README.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Play2.x module for Authentication and Authorization [![Build Status](https://sec
Java版には [Deadbolt 2](https://github.com/schaloner/deadbolt-2) というモジュールがありますので
こちらも参考にして下さい。

Play2.2.1 で動作確認をしています。
Play2.3.0 で動作確認をしています。

動機
---------------------------------------
Expand Down Expand Up @@ -38,6 +38,7 @@ Play2.2.1 で動作確認をしています。
以前のバージョン
---------------------------------------

Play2.2.x 向けの使用方法は [0.11.0 README](https://github.com/t2v/play2-auth/blob/release0.11.0/README.ja.md)をご参照ください。
Play2.1.x 向けの使用方法は [0.10.1 README](https://github.com/t2v/play2-auth/blob/release0.10.1/README.ja.md)をご参照ください。
Play2.0.x 向けの使用方法は [0.7 README](https://github.com/t2v/play2-auth/blob/release0.7/README.ja.md)をご参照ください。

Expand All @@ -53,15 +54,15 @@ Play2.1以前をお使いの方へ

`Build.scala` もしくは `build.sbt` にライブラリ依存性定義を追加します。

"jp.t2v" %% "play2-auth" % "0.11.0",
"jp.t2v" %% "play2-auth-test" % "0.11.0" % "test"
"jp.t2v" %% "play2-auth" % "0.12.0",
"jp.t2v" %% "play2-auth-test" % "0.12.0" % "test"

For example: `Build.scala`

```scala
val appDependencies = Seq(
"jp.t2v" %% "play2-auth" % "0.11.0-SNAPSHT",
"jp.t2v" %% "play2-auth-test" % "0.11.0-SNAPSHT" % "test"
"jp.t2v" %% "play2-auth" % "0.12.0",
"jp.t2v" %% "play2-auth-test" % "0.12.0" % "test"
)
```

Expand Down
12 changes: 4 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,22 +60,18 @@ Add dependency declarations into your `Build.scala` or `build.sbt` file:

* __for Play2.3.x__

"jp.t2v" %% "play2-auth" % "0.12.0-SNAPSHOT",
"jp.t2v" %% "play2-auth-test" % "0.12.0-SNAPSHOT" % "test"
"jp.t2v" %% "play2-auth" % "0.12.0",
"jp.t2v" %% "play2-auth-test" % "0.12.0" % "test"

For example your `Build.scala` might look like this:

```scala
val appDependencies = Seq(
"jp.t2v" %% "play2-auth" % "0.12.0-SNAPSHOT",
"jp.t2v" %% "play2-auth-test" % "0.12.0-SNAPSHOT" % "test"
"jp.t2v" %% "play2-auth" % "0.12.0",
"jp.t2v" %% "play2-auth-test" % "0.12.0" % "test"
)
```

And add sonatype snapshot resolver

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

You don't need to create a `play.plugins` file.

Usage
Expand Down
5 changes: 3 additions & 2 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ object ApplicationBuild extends Build {
val playVersion = play.core.PlayVersion.current

lazy val baseSettings = Seq(
version := "0.12.0-SNAPSHOT",
version := "0.12.0",
scalaVersion := "2.10.4",
crossScalaVersions := Seq("2.10.4", "2.11.1"),
organization := "jp.t2v",
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/",
resolvers ++= {
Expand Down Expand Up @@ -61,7 +62,7 @@ object ApplicationBuild extends Build {
.settings(
libraryDependencies += "com.typesafe.play" %% "play" % playVersion % "provided",
libraryDependencies += play.PlayImport.cache,
libraryDependencies += "jp.t2v" %% "stackable-controller" % "0.4.0-SNAPSHOT",
libraryDependencies += "jp.t2v" %% "stackable-controller" % "0.4.0",
name := appName,
publishMavenStyle := appPublishMavenStyle,
publishArtifact in Test := appPublishArtifactInTest,
Expand Down

0 comments on commit 3781e10

Please sign in to comment.