Skip to content

Commit

Permalink
update mysql driver version in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
xuwei-k committed Jul 3, 2015
1 parent 83d7795 commit fb62c20
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ lazy val main = (project in file("."))
name := "myadmin"

libraryDependencies ++= Seq(
"mysql" % "mysql-connector-java" % "5.1.35",
"mysql" % "mysql-connector-java" % "5.1.36",
jdbc,
anorm
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Other than for the h2 in-memory database, useful mostly in development mode, Pla
For example, if you use MySQL5, you need to add a [[dependency| SBTDependencies]] for the connector:

```
libraryDependencies += "mysql" % "mysql-connector-java" % "5.1.18"
libraryDependencies += "mysql" % "mysql-connector-java" % "5.1.36"
```

## Selecting and configuring the connection pool
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ Play is bundled only with an [H2](http://www.h2database.com) database driver. Co
For example, if you use MySQL5, you need to add a [[dependency|SBTDependencies]] for the connector:

```scala
libraryDependencies += "mysql" % "mysql-connector-java" % "5.1.34"
libraryDependencies += "mysql" % "mysql-connector-java" % "5.1.36"
```

Or if the driver can't be found from repositories you can drop the driver into your project's [[unmanaged dependencies|Anatomy]] `lib` directory.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ <h2>Need to connect to a database?</h2>
to your application dependencies in build.sbt e.g.:
</p>

<pre><code>libraryDependencies += "mysql" % "mysql-connector-java" % "5.1.18"
<pre><code>libraryDependencies += "mysql" % "mysql-connector-java" % "5.1.36"
</code></pre>

<p>
Expand Down Expand Up @@ -263,7 +263,7 @@ <h2>Need to connect to a database?</h2>
to your application dependencies in build.sbt e.g.:
</p>

<pre><code>libraryDependencies += "mysql" % "mysql-connector-java" % "5.1.18"
<pre><code>libraryDependencies += "mysql" % "mysql-connector-java" % "5.1.36"
</code></pre>

<p>
Expand Down

0 comments on commit fb62c20

Please sign in to comment.