diff --git a/gradle.properties b/gradle.properties index 803fd99..495cd06 100644 --- a/gradle.properties +++ b/gradle.properties @@ -14,7 +14,7 @@ # org.gradle.parallel=true #Tue Sep 22 16:15:19 EEST 2015 -VERSION_NAME=0.1.9 +VERSION_NAME=0.1.10-SNAPSHOT GROUP=com.canelmas.let POM_DESCRIPTION=Annotation based simple API flavoured with AOP to handle new Android runtime permission model diff --git a/let-plugin/src/main/groovy/com/canelmas/let/LetPlugin.groovy b/let-plugin/src/main/groovy/com/canelmas/let/LetPlugin.groovy index a400c73..8a6f28b 100644 --- a/let-plugin/src/main/groovy/com/canelmas/let/LetPlugin.groovy +++ b/let-plugin/src/main/groovy/com/canelmas/let/LetPlugin.groovy @@ -43,9 +43,9 @@ class LetPlugin implements Plugin { } project.dependencies { - compile 'com.canelmas.let:let-runtime:0.1.9' + compile 'com.canelmas.let:let-runtime:0.1.10-SNAPSHOT' compile 'org.aspectj:aspectjrt:1.8.6' - compile 'com.canelmas.let:let-annotations:0.1.9' + compile 'com.canelmas.let:let-annotations:0.1.10-SNAPSHOT' } variants.all { variant -> diff --git a/let-sample/build.gradle b/let-sample/build.gradle index d9f0e4a..0ac04be 100644 --- a/let-sample/build.gradle +++ b/let-sample/build.gradle @@ -16,11 +16,10 @@ buildscript { repositories { jcenter() -// maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } -// mavenLocal() + mavenLocal() } dependencies { - classpath 'com.canelmas.let:let-plugin:0.1.9' + classpath 'com.canelmas.let:let-plugin:0.1.10-SNAPSHOT' } } @@ -28,8 +27,7 @@ apply plugin: 'com.android.application' apply plugin: 'let' repositories { -// maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } -// mavenLocal() + mavenLocal() jcenter() }