我正在尝试使用Maven设置LWJGL项目。我正在使用the official website中的“入门”示例源代码。
这包括几行访问LWJGL的清单属性,例如简单的版本检查:
System.out.println("Hello LWJGL " + Version.getVersion() + "!");
这在Eclipse环境中运行没有任何问题(当然在使用Maven构建项目之后),但是当运行clean install
然后通过cmd运行**-jar-with-dependencies.jar
时,以下异常得到了抛出:
java.lang.NullPointerException
at org.lwjgl.system.APIUtil.apiGetManifestValue(APIUtil.java:97)
at org.lwjgl.Version.getVersion(Version.java:33)
at HelloWorld.run(HelloWorld.java:43)
at HelloWorld.main(HelloWorld.java:130)
这是因为Manifest
创建的APIUtil
对象不包含任何属性 - ,但仅限于Maven构建的版本。
这是为什么?我的pom.xml错误,还是LWJGL 3.0.0还没准备好呢?
这是我的pom.xml
:
<properties>
<mainClass>HelloWorld</mainClass>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<finalName>${project.artifactId}-${project.version}.jar</finalName>
</properties>
<dependencies>
<dependency>
<groupId>org.lwjgl</groupId>
<artifactId>lwjgl</artifactId>
<version>3.0.0</version>
</dependency>
<dependency>
<groupId>org.lwjgl</groupId>
<artifactId>lwjgl-platform</artifactId>
<version>3.0.0</version>
<classifier>natives-windows</classifier>
</dependency>
<dependency>
<groupId>org.lwjgl</groupId>
<artifactId>lwjgl-platform</artifactId>
<version>3.0.0</version>
<classifier>natives-linux</classifier>
</dependency>
<dependency>
<groupId>org.lwjgl</groupId>
<artifactId>lwjgl-platform</artifactId>
<version>3.0.0</version>
<classifier>natives-osx</classifier>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>${mainClass}</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
答案 0 :(得分:2)
这个错误发生的原因是LWJGL 3.0.0 is looking inside the Manifest a property called "Implementation-Version"
,但是当你制作了超级jar时,这个属性没有设置。
这对于你如何制作超级jar来说并不是一个问题:由maven-assembly-plugin
创建的清单看起来像:
Manifest-Version: 1.0
Archiver-Version: Plexus Archiver
Built-By: Me
Created-By: Apache Maven 3.3.9
Build-Jdk: 1.8.0_102
Main-Class: HelloWorld
您可以在META-INF/MANIFEST.MF
的{{1}}内看到它。此文件没有jar-with-dependencies
属性。这是正常的:当创建这个可执行的JAR时,所有依赖项的所有MANIFEST都被(正确地)忽略,只生成一个包含"Implementation-Version"
的依赖项,只是为了使JAR可执行。
uber-jar不能包含每个依赖项清单中的内容。例如,"Main-Class"
是多个库的清单中存在的属性,应该保留哪一个? (最后只有一个清单,在超级罐中)。所以问题就出现了,因为我们正在创建一个可执行的JAR,它只能有1个Manifest,所以它不能聚合每个依赖清单中的所有属性。
有两种可能的解决方案:
不要通过将所有依赖项嵌入到单个JAR中来创建可执行jar,而是在"Implementation-Version"
文件夹中创建一个包含每个依赖项的ZIP程序集:这样,每个Manifest都将被保留。这是通过告诉lib
为主类添加Manifest条目并添加类路径并创建自定义程序集描述符来完成的。
maven-jar-plugin
其中<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<configuration>
<archive>
<manifest>
<mainClass>${mainClass}</mainClass>
<addClasspath>true</addClasspath>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<descriptors>
<descriptor>/path/to/assembly.xml</descriptor>
</descriptors>
</configuration>
</plugin>
是汇编描述符的路径,相对于POM的位置,是:
/path/to/assembly.xml
使用这样的配置,运行<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd">
<id>dist</id>
<formats>
<format>zip</format>
</formats>
<dependencySets>
<dependencySet>
<outputDirectory>lib</outputDirectory>
<useProjectArtifact>true</useProjectArtifact>
</dependencySet>
</dependencySets>
</assembly>
将创建ZIP文件mvn clean install
。解压缩并运行(用{JAR的artifactId-version-dist.zip
替换<finalName>
)
finalName
将打印版本,没有任何问题。