pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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.1</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>eu.tankernn.gameEngine</groupId>
  20. <artifactId>tankernn-game-engine</artifactId>
  21. <version>1.1</version>
  22. </dependency>
  23. </dependencies>
  24. <build>
  25. <plugins>
  26. <plugin>
  27. <artifactId>maven-assembly-plugin</artifactId>
  28. <executions>
  29. <execution>
  30. <phase>package</phase>
  31. <goals>
  32. <goal>single</goal>
  33. </goals>
  34. <configuration>
  35. <archive>
  36. <manifest>
  37. <addClasspath>true</addClasspath>
  38. <mainClass>eu.tankernn.gameoflife.GameOfLife</mainClass>
  39. </manifest>
  40. </archive>
  41. <!-- The filename of the assembled distribution file default ${project.build.finalName} -->
  42. <finalName>${project.build.finalName}</finalName>
  43. <appendAssemblyId>false</appendAssemblyId>
  44. </configuration>
  45. </execution>
  46. </executions>
  47. <configuration>
  48. <descriptorRefs>
  49. <descriptorRef>jar-with-dependencies</descriptorRef>
  50. </descriptorRefs>
  51. </configuration>
  52. </plugin>
  53. <plugin>
  54. <groupId>com.googlecode.mavennatives</groupId>
  55. <artifactId>maven-nativedependencies-plugin</artifactId>
  56. <version>0.0.6</version>
  57. <executions>
  58. <execution>
  59. <id>unpacknatives</id>
  60. <phase>package</phase>
  61. <goals>
  62. <goal>copy</goal>
  63. </goals>
  64. </execution>
  65. </executions>
  66. </plugin>
  67. </plugins>
  68. </build>
  69. <properties>
  70. <maven.compiler.source>1.8</maven.compiler.source>
  71. <maven.compiler.target>1.8</maven.compiler.target>
  72. </properties>
  73. <description>A version of the classic Game of Life originally created by John Conway.</description>
  74. </project>