pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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.minesweeper</groupId>
  5. <artifactId>tankernn-minesweeper</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <name>Tankernn Minesweeper</name>
  8. <description>A simple minesweeper interpretation.</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. <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.mines.Mines</mainClass>
  38. </manifest>
  39. </archive>
  40. <!-- The filename of the assembled distribution file default ${project.build.finalName} -->
  41. <finalName>${project.build.finalName}</finalName>
  42. <appendAssemblyId>false</appendAssemblyId>
  43. </configuration>
  44. </execution>
  45. </executions>
  46. <configuration>
  47. <descriptorRefs>
  48. <descriptorRef>jar-with-dependencies</descriptorRef>
  49. </descriptorRefs>
  50. </configuration>
  51. </plugin>
  52. <plugin>
  53. <groupId>com.googlecode.mavennatives</groupId>
  54. <artifactId>maven-nativedependencies-plugin</artifactId>
  55. <version>0.0.6</version>
  56. <executions>
  57. <execution>
  58. <id>unpacknatives</id>
  59. <phase>package</phase>
  60. <goals>
  61. <goal>copy</goal>
  62. </goals>
  63. </execution>
  64. </executions>
  65. </plugin>
  66. </plugins>
  67. </build>
  68. <properties>
  69. <maven.compiler.source>1.8</maven.compiler.source>
  70. <maven.compiler.target>1.8</maven.compiler.target>
  71. </properties>
  72. </project>