找不到 org.junit.jupiter:junit-jupiter:

Could not find org.junit.jupiter:junit-jupiter:

我正在尝试学习如何使用 OkHTTP。我将库导入到我的项目中,但是当我编译代码时出现此错误。

找不到org.junit.jupiter:junit-jupiter:。 要求: 项目:应用程序 在 build.gradle 个文件中搜索。

请问我该怎么办。下面是我的build.gradle

plugins {
id 'com.android.application'
}

android {
compileSdk 32

defaultConfig {
    applicationId "com.omolayoseun.saprktesterapp"
    minSdk 23
    targetSdk 32
    versionCode 1
    versionName "1.0"

    testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard- 
rules.pro'
    }
}
compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
}
}

dependencies {

implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'com.google.android.material:material:1.5.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
implementation 'org.junit.jupiter:junit-jupiter'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'

implementation 'com.squareup.okhttp3:okhttp:4.9.1'
// https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'

}

junit-jupiter 依赖仅用于 运行ning junit 5 单元测试,在你的情况下你甚至不需要这种依赖。随意删除它。并通过在 运行 菜单中选择 app 来确保 运行 项目。

一旦您决定 运行 实际单元测试使用这些依赖项:

    testImplementation 'junit:junit:4.13.2'
    testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'

看来您的问题出在 maven 存储库设置中。 将下面的代码放在项目核心文件夹中的 build.gradle 中。

buildscript {
repositories {
    mavenCentral()
    google()
}}

如果没有帮助或此存储库已经存在 - 尝试关闭离线模式。 转到首选项 > Gradle 并取消选中“离线工作” 如果Gradle处于离线模式,这意味着它不会去网络解决依赖关系。