pom.xml 2.0 KB

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