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

Fix: gradle plugin #16

Closed
wants to merge 12 commits into from
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Plugin that performs Enhancement (entity, transactional, query bean) and can gen

## Status

Currently using this with entity beans written in Kotlin (rather than Java).
Currently using this with entity beans written in Kotlin (rather than Java).
Tested with java project with gradle sub projects.

## Example build.gradle (kotlin)
Expand All @@ -25,7 +25,7 @@ version '1.0-SNAPSHOT'

buildscript {
ext.kotlin_version = '1.2.0'
ext.ebean_version = "11.7.1"
ext.ebean_version = "11.10.6"
ext.postgresql_driver_version = "9.4.1207.jre7"

repositories {
Expand Down Expand Up @@ -87,7 +87,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath "io.ebean:ebean-gradle-plugin:10.2.3"
classpath "io.ebean:ebean-gradle-plugin:11.9.2"
}
}

Expand All @@ -102,7 +102,7 @@ repositories {
dependencies {

//EBean ORM
compile "io.ebean:ebean:11.7.1"
compile "io.ebean:ebean:11.10.6"

compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'io.ebean'
version '11.9.1'
version '11.9.2'

buildscript {
repositories {
Expand Down