gpt4 book ai didi

maven - 带有 Maven 的 Java 9 - 找不到模块

转载 作者:行者123 更新时间:2023-12-04 14:54:38 43 4
gpt4 key购买 nike

我正在将我们的项目从 Java 8 迁移到 Java 9。

使用:IntelliJ IDEA 2017.2.5

Maven版本:3.5.1

到目前为止,我创建了 module-info.java对于我想迁移的所有模块。在这里,requiresjava.base 配合得很好.但是所有其他外部模块/依赖项都没有,例如 log4j 和我们项目中尚未迁移到 Java 9 的包。这些包也作为依赖项添加到 POM 中。但是,IntelliJ 不会在这里抛出错误。
Navigation from module-info.java to the corresponding JAR in External Libraries works.

但是一旦我使用 clean install 运行构建,出现编译失败:module not found: log4j .与所有其他外部软件包相同。

知道为什么会发生此错误吗?我认为 Java 9 会将非模块化依赖项转变为自动模块。我做错了什么或没有理解正确的方法?

这是项目的POM:

<groupId>de.project</groupId>
<artifactId>basicProject</artifactId>
<version>1.0</version>
<name>Basic Project</name>

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>9</source>
<target>9</target>
<compilerVersion>3.7.0</compilerVersion>
</configuration>
<version>3.5.1</version>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>copy-resources</id>
<!-- here the phase you need -->
<phase>package</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>../output/intern/</outputDirectory>
<resources>
<resource>
<directory>intern</directory>
<includes>
<include>loggingConfig.xml</include>
</includes>
<!--<filtering>true</filtering>-->
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.resourceEncoding>UTF-8</project.build.resourceEncoding>
</properties>

<repositories>
<repository>
<id>some_repository</id>
<name>somerepos</name>
<url>http://some.rep.de/plugin/repo/everything</url>
</repository>
</repositories>

<dependencies>
<!--the first project -->
<dependency>
<groupId>de.project</groupId>
<artifactId>firstProject</artifactId>
<version>1.2</version>
</dependency>
<!--the second project -->
<dependency>
<groupId>de.project</groupId>
<artifactId>secondProject</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>de.project</groupId>
<artifactId>thirdProject</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>de.project</groupId>
<artifactId>fourthProject</artifactId>
<version>1.4</version>
</dependency>

<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>

<dependency>
<groupId>com.someitextpdf</groupId>
<artifactId>someitextpdf</artifactId>
<version>5.5.12</version>
</dependency>

<dependency>
<groupId>io.github.lzf0349</groupId>
<artifactId>jdatepicker</artifactId>
<version>2.0.3</version>
</dependency>

<dependency>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
<version>1.6.1</version>
</dependency>

<!--libs for testing -->
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-annotations</artifactId>
<version>3.5.6-Final</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-envers</artifactId>
<version>5.2.1.Final</version>
<scope>provided</scope>
</dependency>
</dependencies>

项目结构:
  • 项目 SDK:9.0(java 版本“9.0.1”)
  • 项目语言级别:9 - 模块、接口(interface)中的私有(private)方法等。
  • 模块 SDK:项目 SDK (9.0)
  • 模块 --> 源 --> 语言级别:9 - 模块、接口(interface)中的私有(private)方法等。
  • 平台设置:SDK:9.0,JDK home 路径 C:\Program Files\Java\jdk-9.0.1
  • 最佳答案

    我做出另一个答案,因为不是每个人都可以阅读评论......

    对我来说 maven-compiler-plugin版本是问题。似乎只支持模块,因为 3.8.0 .

    所以这是我的pom.xml中的部分:

    <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

    <maven.compiler.source>9</maven.compiler.source>
    <maven.compiler.target>9</maven.compiler.target>
    </properties>

    <build>
    <plugins>

    <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>3.8.1</version>
    </plugin>

    </plugins>
    </build>

    关于maven - 带有 Maven 的 Java 9 - 找不到模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48229080/

    43 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com