From f33f84feee49bb93c77a1f054f2c0b58c57d5b0b Mon Sep 17 00:00:00 2001 From: Andy Scherzinger Date: Fri, 23 Apr 2021 10:09:10 +0200 Subject: [PATCH] jsr250 lib has moved from annotation to annotation-api bump to 1.3.2 Signed-off-by: Andy Scherzinger --- app/build.gradle | 2 +- build.gradle | 14 +++++--------- 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 7f0ddf56e..ba05eda13 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -188,7 +188,7 @@ dependencies { kapt "com.google.dagger:dagger-compiler:$daggerVersion" implementation 'com.github.lukaspili.autodagger2:autodagger2:1.1' kapt 'com.github.lukaspili.autodagger2:autodagger2-compiler:1.1' - compileOnly 'javax.annotation:jsr250-api:1.0' + compileOnly 'javax.annotation:javax.annotation-api:1.3.2' // Android only implementation 'org.greenrobot:eventbus:3.1.1' implementation 'io.requery:requery:1.5.1' diff --git a/build.gradle b/build.gradle index 2f762d5df..f5d7cb644 100644 --- a/build.gradle +++ b/build.gradle @@ -28,9 +28,8 @@ buildscript { repositories { google() jcenter() - maven { - url 'https://jitpack.io' - } + maven { url 'https://jitpack.io' } + mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:3.5.0' @@ -50,13 +49,10 @@ allprojects { repositories { google() jcenter() - maven { - url 'https://oss.sonatype.org/content/repositories/snapshots' - } - maven { - url 'https://jitpack.io' - } + maven { url 'https://oss.sonatype.org/content/repositories/snapshots' } + maven { url 'https://jitpack.io' } maven { url 'https://maven.google.com' } + mavenCentral() } }