0

Mavenを使用して、Codenvy IDEでOpenGLを使用して3D Javaゲームエンジンの開発を開始しました。pom.xmlJava 8 を実行するように構成し、必要な依存関係をセットアップしましたLWJGL。ただし、テスト ウィンドウを実行すると、NoClassDefFoundError. Mavenすべての.Jar依存関係を1つのファイルに保存するように構成されているため、それらへのアクセスは問題にならないことを考えると、なぜこれが起こるのかわかりません。すべてのファイルがExternal PackagesCodenvy プロジェクトのディレクトリに正しくダウンロードされました。

は次の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>engineTester.First3DEngine</groupId>
   <artifactId>First3DEngine</artifactId>
   <version>1.5.7</version>
   <packaging>jar</packaging>

  <dependencies>  
    <dependency>
      <groupId>org.lwjgl.lwjgl</groupId>
      <artifactId>lwjgl</artifactId>
      <version>2.8.4</version>
    </dependency>

    <dependency>
      <groupId>org.lwjgl.lwjgl</groupId>
      <artifactId>lwjgl_util</artifactId>
      <version>2.8.4</version>
    </dependency>

    <dependency>
      <groupId>org.lwjgl.lwjgl</groupId>
      <artifactId>lwjgl_util_applet</artifactId>
      <version>2.8.4</version>
    </dependency>

    <dependency>
      <groupId>com.typesafe.slick</groupId>
      <artifactId>slick_2.10</artifactId>
      <version>3.1.1</version>
    </dependency>
    <dependency>
      <groupId>java3d</groupId>
      <artifactId>vecmath</artifactId>
  <version>1.3.1</version>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.12</version>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <!-- Build an executable JAR -->
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <version>2.6</version>
        <configuration>
          <argLine>-Xmx1024m</argLine>
          <archive>
            <manifest>
          <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
        <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
              <addClasspath>true</addClasspath>
              <classpathPrefix>lib/</classpathPrefix>
              <mainClass>engineTester.MainGameLoop</mainClass>
            </manifest>
          </archive>
        </configuration>
      </plugin>
    </plugins>
   </build>
</project>

そして、ここで私は問題を抱えています:

package engineTester;

import org.lwjgl.opengl.Display;

import renderEngine.DisplayManager;
import util.Console;

public class MainGameLoop {
    public static void main(String[] args){
        new Console();
        DisplayManager.createDisplay();  <-- line which throws the error
        while(!Display.isCloseRequested()){
            //game logic
            //render
            DisplayManager.updateDisplay();
        }

        DisplayManager.closeDisplay();

    }
}

DisplayManager.createDisplay()方法:

public static void createDisplay(){
    ContextAttribs attribs = new ContextAttribs(3,2);
    attribs.withForwardCompatible(true);
    attribs.withProfileCore(true);

    try{
        Display.setDisplayMode(new DisplayMode(WIDTH,HEIGHT));
        Display.create(new PixelFormat(), attribs);
    } catch (LWJGLException e){
        e.printStackTrace();
    }

    GL11.glViewport(0,0,WIDTH,HEIGHT);
}

そして最後に完全なエラー:

Exception in thread "main" java.lang.NoClassDefFoundError:     org/lwjgl/LWJGLException
    at engineTester.MainGameLoop.main(MainGameLoop.java:11)
Caused by: java.lang.ClassNotFoundException: org.lwjgl.LWJGLException
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    ... 1 more

ご協力いただきありがとうございます!

4

1 に答える 1

1

maven-assembly-plugin を使用して単独で実行できるファット jar を作成するか、maven を使用してプログラムを実行して、コンパイル時の jar がクラスパスに追加されるようにすることができます。

Maven を使用して実行するには:

mvn exec:java -Dexec.mainClass="engineTester.MainGameLoop"

アセンブリ プラグインを使用するには:

<build>
    <plugins>
         <plugin>
            <artifactId>maven-assembly-plugin</artifactId>
            <version>2.5.5</version>
            <configuration>
                <archive>
                    <manifest>
                        <mainClass>engineTester.MainGameLoop</mainClass>
                    </manifest>
                </archive>
                <descriptorRefs>
                    <descriptorRef>jar-with-dependencies</descriptorRef>
                </descriptorRefs>
            </configuration>
            <executions>
                <execution>
                    <id>make-assembly</id> <!-- this is used for inheritance merges -->
                    <phase>package</phase> <!-- bind to the packaging phase -->
                    <goals>
                        <goal>single</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

-jar-with-depencenciesこれにより、ターゲット ディレクトリの名前に追加された jar が作成されます。これは、java -jar jarfile で実行できます。

于 2015-12-23T11:56:21.107 に答える