pom.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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.pong</groupId>
  5. <artifactId>tankernn-pong</artifactId>
  6. <version>0.0.1</version>
  7. <name>Pong</name>
  8. <description>Pong. What more can I say?</description>
  9. <repositories>
  10. <repository>
  11. <id>tankernn</id>
  12. <name>Tankernn Maven Repository</name>
  13. <url>http://repo.maven.tankernn.eu</url>
  14. </repository>
  15. </repositories>
  16. <dependencies>
  17. <dependency>
  18. <groupId>eu.tankernn.gameEngine</groupId>
  19. <artifactId>tankernn-game-engine</artifactId>
  20. <version>1.2</version>
  21. </dependency>
  22. </dependencies>
  23. <build>
  24. <sourceDirectory>src</sourceDirectory>
  25. <plugins>
  26. <plugin>
  27. <artifactId>maven-compiler-plugin</artifactId>
  28. <version>3.5.1</version>
  29. <configuration>
  30. <source>1.8</source>
  31. <target>1.8</target>
  32. </configuration>
  33. </plugin>
  34. <plugin>
  35. <groupId>com.googlecode.mavennatives</groupId>
  36. <artifactId>maven-nativedependencies-plugin</artifactId>
  37. <version>0.0.6</version>
  38. <executions>
  39. <execution>
  40. <id>unpacknatives</id>
  41. <phase>package</phase>
  42. <goals>
  43. <goal>copy</goal>
  44. </goals>
  45. </execution>
  46. </executions>
  47. </plugin>
  48. </plugins>
  49. </build>
  50. </project>