Skip to content

Commit

Permalink
release0.14.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gakuzzzz committed Mar 12, 2016
1 parent d464575 commit 658dd25
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions README.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,18 +51,18 @@ Play2.1以前をお使いの方へ

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

"jp.t2v" %% "play2-auth" % "0.14.1",
"jp.t2v" %% "play2-auth-social" % "0.14.1", // ソーシャルログイン
"jp.t2v" %% "play2-auth-test" % "0.14.1" % "test",
"jp.t2v" %% "play2-auth" % "0.14.2",
"jp.t2v" %% "play2-auth-social" % "0.14.2", // ソーシャルログイン
"jp.t2v" %% "play2-auth-test" % "0.14.2" % "test",
play.sbt.Play.autoImport.cache // デフォルトのIdContainerを使う場合のみ必要です

For example: `Build.scala`

```scala
val appDependencies = Seq(
"jp.t2v" %% "play2-auth" % "0.14.1",
"jp.t2v" %% "play2-auth-social" % "0.14.1",
"jp.t2v" %% "play2-auth-test" % "0.14.1" % "test",
"jp.t2v" %% "play2-auth" % "0.14.2",
"jp.t2v" %% "play2-auth-social" % "0.14.2",
"jp.t2v" %% "play2-auth-test" % "0.14.2" % "test",
play.sbt.Play.autoImport.cache // デフォルトのIdContainerを使う場合のみ必要です
)
```
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,18 +56,18 @@ Add dependency declarations into your `Build.scala` or `build.sbt` file:

* __for Play2.4.x__

"jp.t2v" %% "play2-auth" % "0.14.1",
"jp.t2v" %% "play2-auth-social" % "0.14.1", // for social login
"jp.t2v" %% "play2-auth-test" % "0.14.1" % "test",
"jp.t2v" %% "play2-auth" % "0.14.2",
"jp.t2v" %% "play2-auth-social" % "0.14.2", // for social login
"jp.t2v" %% "play2-auth-test" % "0.14.2" % "test",
play.sbt.Play.autoImport.cache // only when you use default IdContainer

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

```scala
val appDependencies = Seq(
"jp.t2v" %% "play2-auth" % "0.14.1",
"jp.t2v" %% "play2-auth-social" % "0.14.1",
"jp.t2v" %% "play2-auth-test" % "0.14.1" % "test",
"jp.t2v" %% "play2-auth" % "0.14.2",
"jp.t2v" %% "play2-auth-social" % "0.14.2",
"jp.t2v" %% "play2-auth-test" % "0.14.2" % "test",
play.sbt.Play.autoImport.cache
)
```
Expand Down

0 comments on commit 658dd25

Please sign in to comment.