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 db6c9d7..ca4e0ca 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.11' - compile 'org.aspectj:aspectjrt:1.8.6' - compile 'com.canelmas.let:let-annotations:0.1.11' + implementation 'org.aspectj:aspectjrt:1.8.10' + implementation 'com.canelmas.let:let-runtime:1.0.0-beta1' + implementation 'com.canelmas.let:let-annotations:1.0.0-beta1' } variants.all { variant -> diff --git a/let-runtime/build.gradle b/let-runtime/build.gradle index f7c52b4..c7640da 100644 --- a/let-runtime/build.gradle +++ b/let-runtime/build.gradle @@ -33,13 +33,13 @@ apply plugin: 'com.github.dcendents.android-maven' apply from: '../gradle-mvn-push.gradle' dependencies { - compile deps.aspectjrt - compile project(':let-annotations') + implementation deps.aspectjrt + implementation project(':let-annotations') - compile deps.appCompatv7 - compile deps.supportAnnotations + implementation deps.appCompatv7 + implementation deps.supportAnnotations - testCompile deps.junit + testImplementation deps.junit } android { diff --git a/let-sample/build.gradle b/let-sample/build.gradle index 6e81f71..9619059 100644 --- a/let-sample/build.gradle +++ b/let-sample/build.gradle @@ -16,11 +16,12 @@ buildscript { repositories { jcenter() -// mavenLocal() + mavenLocal() + google() // maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } } dependencies { - classpath 'com.canelmas.let:let-plugin:0.1.11' + classpath 'com.canelmas.let:let-plugin:1.0.0-beta1' } } @@ -29,7 +30,7 @@ apply plugin: 'let' repositories { jcenter() -// mavenLocal() + mavenLocal() // maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } } @@ -59,12 +60,10 @@ android { } dependencies { - compile fileTree(dir: 'libs', include: ['*.jar']) + implementation fileTree(dir: 'libs', include: ['*.jar']) - compile deps.appCompatv7 - compile deps.supportDesign + implementation deps.appCompatv7 + implementation deps.supportDesign - testCompile deps.junit - -// compile 'com.android.tools:annotations:24.3.0' + testImplementation deps.junit }