Open
Description
The project compiled and ran just fine for me. How do you think about adding exec-maven plugin to pom.xml:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.5.0</version>
<executions>
<execution>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>java</executable>
<arguments>
<argument>-classpath</argument>
<classpath/>
<argument>Lwjgl3Test</argument>
</arguments>
</configuration>
</plugin>
This way one can "mvn exec:exec" and see the demo running.
Metadata
Metadata
Assignees
Labels
No labels