Execution failed for task ':compileJava'.
> Could not resolve all files for configuration ':compileClasspath'.
> Could not find com.google.firebase:firebase-auth:23.1.0.
Required by:
root project :
Possible solution:
- Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html
Я не обычный Java-программист. Вот мой build.gradle: [code]plugins { id 'java' id 'org.springframework.boot' version '3.3.5' id 'io.spring.dependency-management' version '1.1.6' }
tasks.named('test') { useJUnitPlatform() } [/code] Вот какая ошибка: [code]Execution failed for task ':compileJava'. > Could not resolve all files for configuration ':compileClasspath'. > Could not find com.google.firebase:firebase-auth:23.1.0. Required by: root project :
Possible solution: - Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html
[/code] Вот зависимость, которую я использую: https://mvnrepository.com/artifact/com.google.firebase/firebase-auth/23.1.0 Я не могу понять, что не так с моей конфигурацией. P.S. Пробовал добавлять google() в репозитории - не помогло.