首页 文章

版本组合(Java 9 Jigsaw项目中的Maven / Log4J)

提问于
浏览
-1

我试图让一个非常简单的JavaFX应用程序与IntelliJ中的maven和Java 10一起运行 .

该项目:https://github.com/ClanWolf/C3-Client_Phoenix

结构:

enter image description here

module-info.java:

module net.clanwolf.c3.client {
    requires javafx.graphics;
    requires javafx.fxml;
    requires javafx.controls;
    requires javafx.base;
    requires org.apache.logging.log4j;
    exports net.clanwolf.c3.client;
}

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>net.clanwolf.c3</groupId>
    <artifactId>C3-Client_Phoenix</artifactId>
    <version>4.6.2</version>
    <packaging>jar</packaging>

    <name>C3-Client Phoenix</name>
    <url>http://c3.clanwolf.net</url>

    <organization>
        <name>ClanWolf W-7</name>
        <url>http://www.clanwolf.net</url>
    </organization>

    <description>Starsystem map of the Inner Sphere, Periphery and Clan space (BattleTech).</description>

    <prerequisites>
        <maven>3.5.3</maven>
        <!--<maven>3.3.9</maven>-->
    </prerequisites>

    <!-- Repositories ############################################################################################## -->
    <repositories>
        <repository>
            <id>mvnrepository</id>
            <name>mvnrepository</name>
            <url>http://www.mvnrepository.com</url>
        </repository>
        <repository>
            <id>mvncentral</id>
            <name>mvncentral</name>
            <url>http://central.maven.org/maven2/</url>
        </repository>
    </repositories>

    <pluginRepositories>
        <pluginRepository>
            <id>oss-sonatype-snapshots</id>
            <url>https://oss.sonatype.org/content/groups/public/</url>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </pluginRepository>
    </pluginRepositories>

    <!-- Properties ################################################################################################ -->
    <properties>
        <!-- __________________________________________________________ Versions -->
        <java.version>10</java.version>
        <maven.compiler.plugin.version>3.7.0</maven.compiler.plugin.version>
        <maven.surefire.plugin.version>2.22.0</maven.surefire.plugin.version>
        <junit.version>4.12</junit.version>
        <junit.jupiter.version>5.2.0</junit.jupiter.version>
        <junit.platform.surefire.provider.version>1.2.0</junit.platform.surefire.provider.version>
        <asm.version>6.2</asm.version>
        <!-- __________________________________________________________ Encoding -->
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

        <mainClass>net.clanwolf.c3.client.MainFrame</mainClass>
        <maven.compiler.source>${java.version}</maven.compiler.source>
        <maven.compiler.target>${java.version}</maven.compiler.target>
    </properties>

    <!-- Dependencies ############################################################################################## -->
    <dependencies>
        <!-- _____________________________________________________________ Maven -->
        <dependency>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>${maven.compiler.plugin.version}</version>
        </dependency>
        <!-- _____________________________________________________________ JUnit -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>${junit.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-api</artifactId>
            <version>${junit.jupiter.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-params</artifactId>
            <version>${junit.jupiter.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.apiguardian</groupId>
            <artifactId>apiguardian-api</artifactId>
            <version>1.0.0</version>
            <scope>test</scope>
        </dependency>
        <!-- ___________________________________________________________ Logging -->
        <dependency>
            <groupId>org.apache.logging.log4j</groupId>
            <artifactId>log4j-api</artifactId>
            <version>2.11.0</version>
        </dependency>
        <dependency>
            <groupId>org.apache.logging.log4j</groupId>
            <artifactId>log4j-core</artifactId>
            <version>2.11.0</version>
        </dependency>
        <!-- _______________________________________________ Tektosyne / Voronoi -->
        <dependency>
            <groupId>org.kynosarges</groupId>
            <artifactId>tektosyne</artifactId>
            <version>6.2.0</version>
        </dependency>
        <!-- ______________________________________________________ C3-Preloader -->
        <dependency>
            <groupId>net.clanwolf</groupId>
            <artifactId>C3-Preloader</artifactId>
            <version>1.0.0</version>
        </dependency>
        <!-- ____________________________________________________________ Nadron -->
        <!--<dependency>-->
            <!--<groupId>com.github.menacher</groupId>-->
            <!--<artifactId>nadron</artifactId>-->
            <!--<version>0.8-SNAPSHOT</version>-->
        <!--</dependency>-->
        <!--<dependency>-->
            <!--<groupId>com.github.menacher</groupId>-->
            <!--<artifactId>nadclient</artifactId>-->
            <!--<version>0.8-SNAPSHOT</version>-->
        <!--</dependency>-->
        <!-- _________________________________________________________ Hibernate -->
        <!--<dependency>-->
            <!--<groupId>org.hibernate.javax.persistence</groupId>-->
            <!--<artifactId>hibernate-jpa-2.1-api</artifactId>-->
            <!--<version>1.0.0.Final</version>-->
        <!--</dependency>-->
        <!--<dependency>-->
            <!--<groupId>org.hibernate</groupId>-->
            <!--<artifactId>hibernate-core</artifactId>-->
            <!--<version>5.0.3.Final</version>-->
        <!--</dependency>-->
        <!-- ___________________________________________________________________________ C H E C K  I F  N E E D E D -->
        <!--<dependency>-->
            <!--<groupId>net.sourceforge.collections</groupId>-->
            <!--<artifactId>collections-generic</artifactId>-->
            <!--<version>4.01</version>-->
        <!--</dependency>-->
        <!--<dependency>-->
            <!--<groupId>com.google.code.gson</groupId>-->
            <!--<artifactId>gson</artifactId>-->
            <!--<version>2.4</version>-->
        <!--</dependency>-->
        <!--<dependency>-->
            <!--<groupId>commons-codec</groupId>-->
            <!--<artifactId>commons-codec</artifactId>-->
            <!--<version>1.10</version>-->
        <!--</dependency>-->
        <!--<dependency>-->
            <!--<groupId>dom4j</groupId>-->
            <!--<artifactId>dom4j</artifactId>-->
            <!--<version>1.6.1</version>-->
        <!--</dependency>-->
        <!--<dependency>-->
            <!--<groupId>commons-net</groupId>-->
            <!--<artifactId>commons-net</artifactId>-->
            <!--<version>3.3</version>-->
        <!--</dependency>-->

    </dependencies>

    <!-- Build ##################################################################################################### -->
    <build>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <filtering>true</filtering>
                <includes>
                    <include>**/version.number</include>
                </includes>
            </resource>
            <resource>
                <directory>src/main/resources</directory>
                <filtering>false</filtering>
                <excludes>
                    <exclude>**/version.number</exclude>
                </excludes>
            </resource>
        </resources>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>${maven.compiler.plugin.version}</version>
                <configuration>
                    <source>${java.version}</source>
                    <target>${java.version}</target>
                </configuration>
                <dependencies>
                    <dependency>
                        <groupId>org.ow2.asm</groupId>
                        <artifactId>asm</artifactId>
                        <version>${asm.version}</version>
                    </dependency>
                </dependencies>
            </plugin>
            <plugin>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>${maven.surefire.plugin.version}</version>
                <dependencies>
                    <dependency>
                        <groupId>org.junit.platform</groupId>
                        <artifactId>junit-platform-surefire-provider</artifactId>
                        <version>${junit.platform.surefire.provider.version}</version>
                    </dependency>
                    <dependency>
                        <groupId>org.junit.jupiter</groupId>
                        <artifactId>junit-jupiter-engine</artifactId>
                        <version>${junit.jupiter.version}</version>
                    </dependency>
                    <dependency>
                        <groupId>org.junit.platform</groupId>
                        <artifactId>junit-platform-surefire-provider</artifactId>
                        <version>1.2.0</version>
                    </dependency>
                    <dependency>
                        <groupId>org.ow2.asm</groupId>
                        <artifactId>asm</artifactId>
                        <version>${asm.version}</version>
                    </dependency>
                </dependencies>
                <configuration>
                    <parallel>methods</parallel>
                    <threadCount>10</threadCount>
                    <includes>
                        <include>**/Test*.java</include>
                        <include>**/*Test.java</include>
                        <include>**/*Tests.java</include>
                        <include>**/*TestCase.java</include>
                    </includes>
                </configuration>
            </plugin>
            <plugin>
                <groupId>com.zenjava</groupId>
                <artifactId>javafx-maven-plugin</artifactId>
                <version>8.9.0-SNAPSHOT</version>
                <configuration>
                    <mainClass>net.clanwolf.c3.client.MainFrame</mainClass>
                    <preLoader>c3_preloader.C3_Preloader</preLoader>
                    <verbose>true</verbose>
                    <bundleArguments>
                        <!-- MSI installer Options -->
                        <!-- https://docs.oracle.com/javase/9/tools/javapackager.htm#GUID-E51F9601-E121-4A50-BCA7-C7F8730078B2__WINDOWSEXEBUNDLERARGUMENTS-26C9A39C -->
                        <!-- Custonmize MSI installer -->
                        <!-- http://wixtoolset.org/documentation/manual/v3/wixui/wixui_customizations.html -->
                        <icon>target/classes/icon.ico</icon>
                        <installdirChooser>true</installdirChooser>
                        <module-path>target/classes</module-path>
                        <module>net.clanwolf.c3.client</module>
                        <!--<add-modules>module1,module2,module3</add-modules>-->
                        <!--<limit-modules>module1,module2,module3</limit-modules>-->
                        <!--<runtime /> Not working together with the above commands -->
                    </bundleArguments>
                    <!--<jfxMainAppJarName>${project.build.finalName}.jar</jfxMainAppJarName>-->
                    <identifier>${project.artifactId}</identifier>
                    <vendor>ClanWolf.net</vendor>
                    <!-- win.app | linux.app | mac.app | exe | msi | rpm | deb -->
                    <bundler>msi</bundler>
                    <nativeReleaseVersion>${project.version}</nativeReleaseVersion>
                    <needShortcut>true</needShortcut>
                    <needMenu>true</needMenu>
                    <appName>${project.artifactId}</appName>
                    <jvmArgs>
                        <jvmArg>-Xmx2g</jvmArg>
                        <jvmArg>-Djavafx.verbose=true</jvmArg>
                        <!--<jvmProperty>-DMyProperty=true</jvmProperty>-->
                    </jvmArgs>
                    <!--<jvmProperties>-->
                    <!--<UserProperty>foo</UserProperty>-->
                    <!--</jvmProperties>-->
                    <!--<userJvmArgs>-->
                    <!--<Argument3>AppCommand</Argument3>-->
                    <!--</userJvmArgs>-->
                    <!--<keyStoreAlias>example-user</keyStoreAlias>-->
                    <!--<keyStorePassword>example-password</keyStorePassword>-->
                    <allPermissions>false</allPermissions>
                    <manifestAttributes>
                        <Specification-Title>${project.name}</Specification-Title>
                        <Specification-Version>${project.version}</Specification-Version>
                        <Specification-Vendor>${project.organization.name}</Specification-Vendor>
                        <Implementation-Title>${project.name}</Implementation-Title>
                        <Implementation-Version>${project.version}</Implementation-Version>
                        <Implementation-Vendor-Id>${project.groupId}</Implementation-Vendor-Id>
                        <Implementation-Vendor>${project.organization.name}</Implementation-Vendor>
                    </manifestAttributes>
                </configuration>
                <executions>
                    <execution>
                        <id>create-jfxjar</id>
                        <phase>package</phase>
                        <goals>
                            <goal>build-jar</goal>
                        </goals>
                    </execution>
                    <execution>
                        <id>create-native</id>
                        <phase>package</phase>
                        <goals>
                            <goal>build-native</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

</project>

这不会运行 . maven构建完成没有问题,但如果我在IntelliJ中启动它,它给了我这个:

Error occurred during initialization of boot layer java.lang.module.ResolutionException: Modules maven.core and maven.artifact export package org.apache.maven.artifact.resolver.filter to module aether.impl

如果我确实删除了log4j-core的依赖项,它将运行,但它会在运行时抱怨没有log4j的实现,我应该添加log4j-core . 如果我这样做,则会再次显示Resolution Bullshit . 如果可能的话,如何解决这个问题呢?

2 回答

  • 1

    Java 9模块化带来了一些新的规则,例如:Split packages,即具有相同包但在不同jar中的类,是不允许的 . 这只是处理模块路径时的问题,而不是传统的类路径 . 似乎intellij决定切换到模块路径的错误原因,可能是因为log4j有一个模块描述符 .

  • 0

    毕竟问题是maven-compiler-plugin作为依赖项在pom.xml中 . 这不是必需的,因为它仅在包装期间使用 . 删除后,错误就消失了 .

相关问题