Gradle 构建失败于:compileJava:“没有匹配的变体”

Fol*_*OwO 5 java gradle bukkit build.gradle gradle-kotlin-dsl

我正在尝试为 Minecraft Bukkit(纸)插件制作一个库。我正在尝试构建一个 jar 文件,但 Gradle 给了我这个错误:

Execution failed for task ':compileJava'.
> Could not resolve all files for configuration ':compileClasspath'.
Run Code Online (Sandbox Code Playgroud)

我以前从未见过这个错误。

Execution failed for task ':compileJava'.
> Could not resolve all files for configuration ':compileClasspath'.
   > Could not resolve io.papermc.paper:paper-api:1.18.2-R0.1-SNAPSHOT.
     Required by:
         project :
      > No matching variant of io.papermc.paper:paper-api:1.18.2-R0.1-SNAPSHOT:20220703.182221-166 was found. The consumer was configured to find an API of a library compatible with Java 16, preferably in the form of class files, preferably optimized for standard JVMs, and its dependencies declared externally but:
          - Variant 'apiElements' capability io.papermc.paper:paper-api:1.18.2-R0.1-SNAPSHOT declares an API of a library, packaged as a jar, and its dependencies declared externally:
              - Incompatible because this component declares a component compatible with Java 17 and the consumer needed a component compatible with Java 16
              - Other compatible attribute:
                  - Doesn't say anything about its target Java environment (preferred optimized for standard JVMs)
          - Variant 'javadocElements' capability io.papermc.paper:paper-api:1.18.2-R0.1-SNAPSHOT declares a runtime of a component, and its dependencies declared externally:
              - Incompatible because this component declares documentation and the consumer needed a library
              - Other compatible attributes:
                  - Doesn't say anything about its target Java environment (preferred optimized for standard JVMs)
                  - Doesn't say anything about its target Java version (required compatibility with Java 16)
                  - Doesn't say anything about its elements (required them preferably in the form of class files)
          - Variant 'runtimeElements' capability io.papermc.paper:paper-api:1.18.2-R0.1-SNAPSHOT declares a runtime of a library, packaged as a jar, and its dependencies declared externally:
              - Incompatible because this component declares a component compatible with Java 17 and the consumer needed a component compatible with Java 16
              - Other compatible attribute:
                  - Doesn't say anything about its target Java environment (preferred optimized for standard JVMs)
          - Variant 'sourcesElements' capability io.papermc.paper:paper-api:1.18.2-R0.1-SNAPSHOT declares a runtime of a component, and its dependencies declared externally:
              - Incompatible because this component declares documentation and the consumer needed a library
              - Other compatible attributes:
                  - Doesn't say anything about its target Java environment (preferred optimized for standard JVMs)
                  - Doesn't say anything about its target Java version (required compatibility with Java 16)
                  - Doesn't say anything about its elements (required them preferably in the form of class files)

Run Code Online (Sandbox Code Playgroud)

完整的输出日志太长了,我已将其上传到pastebin:

使用 -scan -debug (完整输出)

plugins {
    id("java")
    id("maven-publish")
}

group = "ml.windleaf"
version = "1.0.1"

repositories {
    mavenCentral()
    maven("https://jitpack.io")
    maven("https://repo.papermc.io/repository/maven-public/")
}

dependencies {
    testImplementation("org.junit.jupiter:junit-jupiter-api:5.8.1")
    testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.8.1")
    implementation("io.papermc.paper:paper-api:1.18.2-R0.1-SNAPSHOT")
    // https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core
    implementation("org.apache.logging.log4j:log4j-core:2.18.0")
}

tasks.getByName<Test>("test") {
    useJUnitPlatform()
}

allprojects {
    apply(plugin = "java")
    apply(plugin = "java-library")
    apply(plugin = "maven-publish")

    repositories {
        mavenCentral()
        maven("https://jitpack.io")
        maven("https://repo.papermc.io/repository/maven-public/")
    }

    dependencies {
        implementation("org.jetbrains:annotations:23.0.0")
        implementation("org.apache.maven:maven-artifact:3.8.5")
    }

    tasks {
        compileJava {
            options.encoding = "UTF-8"
        }
    }
}

publishing {
    publications {
        create("maven_public", MavenPublication::class) {
            groupId = "ml.windleaf"
            artifactId = "PlugApi"
            version = version
            from(components.getByName("java"))
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

请大家帮我分析一下为什么会出现这样的错误。

aSe*_*emy 9

tl;dr:Paper API 文档说将 Java 版本设置为 17 - 看起来您没有这样做。尝试添加

java {
    toolchain.languageVersion.set(JavaLanguageVersion.of(17))
}
Run Code Online (Sandbox Code Playgroud)

解释

Gradle 给出的错误很详细,但它确实解释了发生了什么。让我们来分解一下

第一点有趣的是:

Could not resolve io.papermc.paper:paper-api:1.18.2-R0.1-SNAPSHOT
Run Code Online (Sandbox Code Playgroud)

Gradle 找不到您声明的依赖项。通过查看Paper API 文档,您正在使用正确的 Maven 存储库和正确的依赖项,因此 Gradle 肯定有另一个原因......

No matching variant of 
io.papermc.paper:paper-api:1.18.2-R0.1-SNAPSHOT:20220703.182221-166 
was found.

The consumer was configured to find an API of a library compatible with Java 16
Run Code Online (Sandbox Code Playgroud)

基本上,“消费者”(即您的项目)是在说“我需要一些与 Java 16 兼容的东西,因为这就是我正在使用的”。

Incompatible because this component declares a component compatible with Java 17
and the consumer needed a component compatible with Java 16
Run Code Online (Sandbox Code Playgroud)

现在,Gradle 找到了非常接近的东西,但它被取消资格,因为它使用的是 Java 17 - 这与您的项目需求不匹配。

Gradle 还列出了一些其他变体,但它们也被取消资格,因为它们不是 Java 库 - 它们是源代码或 Javadoc 变体。