pom.xml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>eu.tankernn.gameEngine</groupId>
  5. <artifactId>tankernn-game-engine</artifactId>
  6. <version>1.0-SNAPSHOT</version>
  7. <packaging>jar</packaging>
  8. <url>http://tankernn.eu</url>
  9. <name>Tankernn Game Engine</name>
  10. <dependencies>
  11. <dependency>
  12. <groupId>junit</groupId>
  13. <artifactId>junit</artifactId>
  14. <version>4.8.2</version>
  15. <scope>test</scope>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.lwjgl.lwjgl</groupId>
  19. <artifactId>lwjgl</artifactId>
  20. <version>2.9.3</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.lwjgl.lwjgl</groupId>
  24. <artifactId>lwjgl_util</artifactId>
  25. <version>2.9.3</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.l33tlabs.twl</groupId>
  29. <artifactId>pngdecoder</artifactId>
  30. <version>1.0</version>
  31. </dependency>
  32. </dependencies>
  33. <build>
  34. <plugins>
  35. <plugin>
  36. <artifactId>maven-assembly-plugin</artifactId>
  37. <executions>
  38. <execution>
  39. <phase>package</phase>
  40. <goals>
  41. <goal>single</goal>
  42. </goals>
  43. <configuration>
  44. <archive>
  45. <manifest>
  46. <addClasspath>true</addClasspath>
  47. <mainClass>eu.tankernn.gameEngine.tester.MainLoop</mainClass>
  48. </manifest>
  49. </archive>
  50. <!-- The filename of the assembled distribution file defualt ${project.build.finalName} -->
  51. <finalName>${project.build.finalName}</finalName>
  52. <appendAssemblyId>false</appendAssemblyId>
  53. </configuration>
  54. </execution>
  55. </executions>
  56. <configuration>
  57. <descriptorRefs>
  58. <descriptorRef>jar-with-dependencies</descriptorRef>
  59. </descriptorRefs>
  60. </configuration>
  61. </plugin>
  62. <plugin>
  63. <groupId>com.googlecode.mavennatives</groupId>
  64. <artifactId>maven-nativedependencies-plugin</artifactId>
  65. <version>0.0.6</version>
  66. <executions>
  67. <execution>
  68. <id>unpacknatives</id>
  69. <phase>generate-resources</phase>
  70. <goals>
  71. <goal>copy</goal>
  72. </goals>
  73. </execution>
  74. </executions>
  75. </plugin>
  76. </plugins>
  77. <resources>
  78. <resource>
  79. <directory>res</directory>
  80. <excludes>
  81. </excludes>
  82. </resource>
  83. <resource>
  84. <directory>src/main/java</directory>
  85. <includes>
  86. <include>**/*.glsl</include>
  87. </includes>
  88. </resource>
  89. </resources>
  90. </build>
  91. <properties>
  92. <maven.compiler.source>1.8</maven.compiler.source>
  93. <maven.compiler.target>1.8</maven.compiler.target>
  94. </properties>
  95. </project>