gpt4 book ai didi

java - 使用 Maven 将外观依赖项打包到可执行 jar 中

转载 作者:太空宇宙 更新时间:2023-11-04 06:41:56 24 4
gpt4 key购买 nike

我正在将 Substance Look and Feel 与 Netbeans 和 Maven 一起用于我的 Swing GUI 应用程序。

当我从 Netbeans 中运行项目时,会应用外观和感觉,但是当我清理和构建项目并执行 maven 生成的 jar 时,GUI 将恢复为默认的外观和感觉。

此外,在检查生成的 jar 时,我在任何地方都看不到物质文件。

我已经通过maven添加了物质依赖,甚至尝试将其范围更改为运行时,但没有任何变化。我在编译或执行程序时没有遇到错误或异常。有什么问题吗?

我在 64 位 Windows 8 计算机上使用 JDK 7。

以下是设置 LaF 的代码:

try {
UIManager.setLookAndFeel("org.pushingpixels.substance.api.skin.SubstanceGraphiteLookAndFeel");
}
catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
Logger.getLogger(Texus.class.getName()).log(Level.SEVERE, null, ex);
}

这是我的 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>com.pawandubey</groupId>
<artifactId>Texus</artifactId>
<version>0.1-ALPHA</version>
<packaging>jar</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>com.pawandubey.texus.Texus</mainClass>
</manifest>
</archive>
</configuration>

</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.insubstantial</groupId>
<artifactId>substance</artifactId>
<version>7.2.1</version>

</dependency>
<dependency>
<groupId>com.seaglasslookandfeel</groupId>
<artifactId>seaglasslookandfeel</artifactId>
<version>0.2</version>
</dependency>
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>
</project>

最佳答案

参见QuickStartJavaMavenProject 。它解释了您应该使用 maven-assemply-plugin使用您的依赖项创建一个 jar 。类似的东西

<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.4</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>com.areaofthoughts.grumpycat.GrumpyCat</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>

关于java - 使用 Maven 将外观依赖项打包到可执行 jar 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24580254/

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