Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to ebean 12.8.1 #213

Merged
merged 1 commit into from
Apr 5, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
- stage: deploy
name: "Publish artifacts to Bintray"
script: sbt +publish
env: TRAVIS_JDK=11
env: TRAVIS_JDK=8

after_success: bash <(curl -s https://codecov.io/bash)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The Play Ebean plugin supports several different versions of Play and Ebean.

| Plugin version | Play version | Ebean version |
|----------------|--------------|---------------|
| 6.1.0 | 2.8.x | 12.1.13 |
| 6.1.0 | 2.8.x | 12.8.1 |
| 6.0.0 | 2.8.1 | 11.45.1 |
| 5.0.2 | 2.7.0 | 11.39.x |
| 5.0.1    | 2.7.0   | 11.32.x       |
Expand Down
5 changes: 3 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,14 @@ object Dependencies {

object Versions {
val play: String = "2.8.0"
val ebean = "12.1.13"
val ebeanAgent = "12.1.15"
val ebean = "12.8.1"
val ebeanAgent = "12.8.1"
val typesafeConfig = "1.3.4"
}

val ebean = libraryDependencies ++= Seq(
"io.ebean" % "ebean" % Versions.ebean,
"io.ebean" % "ebean-ddl-generator" % Versions.ebean,
"io.ebean" % "ebean-agent" % Versions.ebeanAgent,
"com.typesafe.play" %% "play-java-jdbc" % Versions.play,
"com.typesafe.play" %% "play-jdbc-evolutions" % Versions.play,
Expand Down