diff --git a/README.md b/README.md index 555fdc015..418cda9a6 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ buildscript { } dependencies { classpath 'com.android.tools.build:gradle:3.5.3' - classpath 'org.greenrobot:greendao-gradle-plugin:3.2.2' // add plugin + classpath 'org.greenrobot:greendao-gradle-plugin:3.3.0' // add plugin } } ``` @@ -48,7 +48,7 @@ apply plugin: 'com.android.application' apply plugin: 'org.greenrobot.greendao' // apply plugin dependencies { - implementation 'org.greenrobot:greendao:3.2.2' // add library + implementation 'org.greenrobot:greendao:3.3.0' // add library } ``` diff --git a/build.gradle b/build.gradle index 626572f79..a6df9281b 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ // Sub projects may reference rootProject.version -version = '3.2.3-SNAPSHOT' +version = '3.3.0' wrapper { distributionType = Wrapper.DistributionType.ALL @@ -14,6 +14,8 @@ ext { // common dependencies for Android projects (not to be used in example projects for better copy and paste) dep = [ androidPlugin: 'com.android.tools.build:gradle:3.5.3', + + // Used only in tests, should point to the latest *published* version (not relevant to publishing) greendaoPlugin: 'org.greenrobot:greendao-gradle-plugin:3.2.2' ] }