pom.xml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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.1</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. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  33. <dependency>
  34. <groupId>org.apache.commons</groupId>
  35. <artifactId>commons-lang3</artifactId>
  36. <version>3.5</version>
  37. </dependency>
  38. </dependencies>
  39. <build>
  40. <finalName>${project.artifactId}-${project.version}.${build.number}</finalName>
  41. <plugins>
  42. <plugin>
  43. <groupId>org.apache.maven.plugins</groupId>
  44. <artifactId>maven-compiler-plugin</artifactId>
  45. <version>3.5.1</version>
  46. <configuration>
  47. <source>1.8</source>
  48. <target>1.8</target>
  49. </configuration>
  50. </plugin>
  51. <plugin>
  52. <groupId>com.googlecode.mavennatives</groupId>
  53. <artifactId>maven-nativedependencies-plugin</artifactId>
  54. <version>0.0.6</version>
  55. <executions>
  56. <execution>
  57. <id>unpacknatives</id>
  58. <phase>package</phase>
  59. <goals>
  60. <goal>copy</goal>
  61. </goals>
  62. </execution>
  63. </executions>
  64. </plugin>
  65. </plugins>
  66. <resources>
  67. <resource>
  68. <directory>src/main/java</directory>
  69. <includes>
  70. <include>**/*.glsl</include>
  71. </includes>
  72. </resource>
  73. </resources>
  74. </build>
  75. <properties>
  76. <build.number>SNAPSHOT</build.number>
  77. </properties>
  78. </project>