summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--compiler/build.gradle2
-rw-r--r--compilerCommon/build.gradle2
2 files changed, 2 insertions, 2 deletions
diff --git a/compiler/build.gradle b/compiler/build.gradle
index 3afdd925..e744f865 100644
--- a/compiler/build.gradle
+++ b/compiler/build.gradle
@@ -35,7 +35,7 @@ buildscript {
dependencies {
implementation project(':dataBinding:compilerCommon')
implementation project(':dataBinding:baseLibrary')
- implementation findProject(':base:annotations') ?: 'com.android.tools:annotations:24.5.0'
+ implementation libs.com.android.tools.annotations
implementation libs.kotlin_stdlib
implementation libs.auto_common
implementation libs.javapoet
diff --git a/compilerCommon/build.gradle b/compilerCommon/build.gradle
index 044a8dc1..69e25e16 100644
--- a/compilerCommon/build.gradle
+++ b/compilerCommon/build.gradle
@@ -59,7 +59,7 @@ dependencies {
implementation libs.gson
// specify a jaxb runtime for j11 compatibility
implementation libs.jaxb_runtime
- implementation findProject(':base:annotations') ?: 'com.android.tools:annotations:24.5.0'
+ implementation libs.com.android.tools.annotations
implementation libs.jetifier_core
testImplementation libs.junit
testImplementation libs.compile_testing