pom.xml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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.game</groupId>
  5. <artifactId>tankernn-3d-game</artifactId>
  6. <version>0.0.2</version>
  7. <name>Tankernn 3D Game</name>
  8. <repositories>
  9. <repository>
  10. <id>tankernn</id>
  11. <name>Tankernn Maven Repository</name>
  12. <url>http://repo.maven.tankernn.eu</url>
  13. </repository>
  14. </repositories>
  15. <dependencies>
  16. <dependency>
  17. <groupId>eu.tankernn.gameEngine</groupId>
  18. <artifactId>tankernn-game-engine</artifactId>
  19. <version>1.2</version>
  20. </dependency>
  21. </dependencies>
  22. <build>
  23. <finalName>${project.artifactId}-${project.version}.${build.number}</finalName>
  24. <plugins>
  25. <plugin>
  26. <artifactId>maven-assembly-plugin</artifactId>
  27. <executions>
  28. <execution>
  29. <phase>package</phase>
  30. <goals>
  31. <goal>single</goal>
  32. </goals>
  33. <configuration>
  34. <archive>
  35. <manifest>
  36. <addClasspath>true</addClasspath>
  37. <mainClass>eu.tankernn.game.Game</mainClass>
  38. </manifest>
  39. <manifestEntries>
  40. <Specification-Title>${project.name}</Specification-Title>
  41. <Specification-Version>${project.version}</Specification-Version>
  42. <Implementation-Version>${build.number}</Implementation-Version>
  43. </manifestEntries>
  44. </archive>
  45. <!-- The filename of the assembled distribution file defualt ${project.build.finalName} -->
  46. <finalName>${project.build.finalName}</finalName>
  47. <appendAssemblyId>false</appendAssemblyId>
  48. </configuration>
  49. </execution>
  50. </executions>
  51. <configuration>
  52. <descriptorRefs>
  53. <descriptorRef>jar-with-dependencies</descriptorRef>
  54. </descriptorRefs>
  55. </configuration>
  56. </plugin>
  57. <plugin>
  58. <groupId>com.googlecode.mavennatives</groupId>
  59. <artifactId>maven-nativedependencies-plugin</artifactId>
  60. <version>0.0.6</version>
  61. <executions>
  62. <execution>
  63. <id>unpacknatives</id>
  64. <phase>package</phase>
  65. <goals>
  66. <goal>copy</goal>
  67. </goals>
  68. </execution>
  69. </executions>
  70. </plugin>
  71. </plugins>
  72. <resources>
  73. <resource>
  74. <directory>res</directory>
  75. <excludes>
  76. </excludes>
  77. </resource>
  78. <resource>
  79. <directory>src/main/java</directory>
  80. <includes>
  81. <include>**/*.glsl</include>
  82. </includes>
  83. </resource>
  84. </resources>
  85. </build>
  86. <properties>
  87. <maven.compiler.source>1.8</maven.compiler.source>
  88. <maven.compiler.target>1.8</maven.compiler.target>
  89. <build.number>SNAPSHOT</build.number>
  90. </properties>
  91. </project>