pom.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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.gameoflife</groupId>
  5. <artifactId>game-of-life</artifactId>
  6. <version>1.0</version>
  7. <packaging>jar</packaging>
  8. <url>http://tankernn.eu</url>
  9. <name>Conway's Game of Life</name>
  10. <repositories>
  11. <repository>
  12. <id>tankernn-repo</id>
  13. <name>tankernn maven repository</name>
  14. <url>http://repo.maven.tankernn.eu/</url>
  15. </repository>
  16. </repositories>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.lwjgl.lwjgl</groupId>
  20. <artifactId>lwjgl</artifactId>
  21. <version>2.9.3</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.lwjgl.lwjgl</groupId>
  25. <artifactId>lwjgl_util</artifactId>
  26. <version>2.9.3</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>eu.tankernn.gameEngine</groupId>
  30. <artifactId>tankernn-game-engine</artifactId>
  31. <version>1.0.1-SNAPSHOT</version>
  32. </dependency>
  33. </dependencies>
  34. <build>
  35. <plugins>
  36. <plugin>
  37. <artifactId>maven-assembly-plugin</artifactId>
  38. <executions>
  39. <execution>
  40. <phase>package</phase>
  41. <goals>
  42. <goal>single</goal>
  43. </goals>
  44. <configuration>
  45. <archive>
  46. <manifest>
  47. <addClasspath>true</addClasspath>
  48. <mainClass>eu.tankernn.gameoflife.GameOfLife</mainClass>
  49. </manifest>
  50. </archive>
  51. <!-- The filename of the assembled distribution file defualt ${project.build.finalName} -->
  52. <finalName>${project.build.finalName}</finalName>
  53. <appendAssemblyId>false</appendAssemblyId>
  54. </configuration>
  55. </execution>
  56. </executions>
  57. <configuration>
  58. <descriptorRefs>
  59. <descriptorRef>jar-with-dependencies</descriptorRef>
  60. </descriptorRefs>
  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. </build>
  79. <properties>
  80. <maven.compiler.source>1.8</maven.compiler.source>
  81. <maven.compiler.target>1.8</maven.compiler.target>
  82. </properties>
  83. <description>A version of the classic Game of Life originally created by John Conway.</description>
  84. </project>