为什么 Maven 找不到 org.json JPMS 自动模块?

Why does Maven not find org.json JPMS automatic module?

我有一个小测试项目,包含 2 个文件:

pom.xml:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>org.example</groupId>
    <artifactId>test</artifactId>
    <version>1.0.0-SNAPSHOT</version>

    <properties>
        <maven.compiler.source>17</maven.compiler.source>
        <maven.compiler.target>17</maven.compiler.target>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.json</groupId>
            <artifactId>json</artifactId>
            <version>20210307</version>
        </dependency>
    </dependencies>
</project>

src/main/java/module-info.java:

module org.example.test {
    requires org.json;
}

当我用 Temurin 17 编译时:

openjdk version "17" 2021-09-14
OpenJDK Runtime Environment Temurin-17+35 (build 17+35)
OpenJDK 64-Bit Server VM Temurin-17+35 (build 17+35, mixed mode, sharing)

使用 IntelliJ IDEA 打包的 Maven 3.6.3,我得到这个错误:

src/main/java/module-info.java:[2,17] module not found: org.json

json-20210307.jar 文件在 META-INF/MANIFEST.MF 中包含此行:

Automatic-Module-Name: org.json

我还需要做什么才能在 Maven 中使用 JPMS?

如果你运行 mvn help:effective-pom 您会注意到该项目使用的 Maven 编译器版本可能有点过时。明确地尝试使用较新的版本,看看它如何改变:

<build>
    <pluginManagement>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.8.1</version> <!-- current version -->
            </plugin>
        </plugins>
    </pluginManagement>
</build>