diff options
author | Anton Tananaev <anton@traccar.org> | 2022-08-30 09:03:15 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2022-08-30 09:03:15 -0700 |
commit | d81296ccc31fd0528758a49d81432535141061bc (patch) | |
tree | a308dd0b1ccfa182ce3030fb00a4d1447f3901a5 | |
parent | 4b2102596354446c291540a8c38e7cb4b0dd1086 (diff) | |
download | trackermap-server-d81296ccc31fd0528758a49d81432535141061bc.tar.gz trackermap-server-d81296ccc31fd0528758a49d81432535141061bc.tar.bz2 trackermap-server-d81296ccc31fd0528758a49d81432535141061bc.zip |
Reduce dependencies size
-rw-r--r-- | build.gradle | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle index 1b1fbb738..5f7396dba 100644 --- a/build.gradle +++ b/build.gradle @@ -83,7 +83,9 @@ dependencies { implementation "com.sun.xml.bind:jaxb-impl:3.0.2" implementation "javax.activation:activation:1.1.1" implementation "com.amazonaws:aws-java-sdk-sns:1.12.141" - implementation "com.google.firebase:firebase-admin:9.0.0" + implementation ("com.google.firebase:firebase-admin:9.0.0") { + exclude group: 'com.google.cloud', module: 'google-cloud-firestore' + } testImplementation "junit:junit:4.13.2" testImplementation "org.mockito:mockito-core:3.+" } |