Skip to content

Add exec plugin for maven users #3

Open
@mpfeifer

Description

@mpfeifer

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions