pom.xml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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.2</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. <!-- https://mvnrepository.com/artifact/org.json/json -->
  39. <dependency>
  40. <groupId>org.json</groupId>
  41. <artifactId>json</artifactId>
  42. <version>20160810</version>
  43. </dependency>
  44. <!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
  45. <dependency>
  46. <groupId>com.google.guava</groupId>
  47. <artifactId>guava</artifactId>
  48. <version>19.0</version>
  49. </dependency>
  50. </dependencies>
  51. <build>
  52. <finalName>${project.artifactId}-${project.version}.${build.number}</finalName>
  53. <plugins>
  54. <plugin>
  55. <groupId>org.apache.maven.plugins</groupId>
  56. <artifactId>maven-compiler-plugin</artifactId>
  57. <version>3.5.1</version>
  58. <configuration>
  59. <source>1.8</source>
  60. <target>1.8</target>
  61. </configuration>
  62. </plugin>
  63. <plugin>
  64. <groupId>com.googlecode.mavennatives</groupId>
  65. <artifactId>maven-nativedependencies-plugin</artifactId>
  66. <version>0.0.6</version>
  67. <executions>
  68. <execution>
  69. <id>unpacknatives</id>
  70. <phase>package</phase>
  71. <goals>
  72. <goal>copy</goal>
  73. </goals>
  74. </execution>
  75. </executions>
  76. </plugin>
  77. </plugins>
  78. <resources>
  79. <resource>
  80. <directory>src/main/java</directory>
  81. <includes>
  82. <include>**/*.glsl</include>
  83. </includes>
  84. </resource>
  85. </resources>
  86. </build>
  87. <properties>
  88. <build.number>SNAPSHOT</build.number>
  89. </properties>
  90. </project>