pom.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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.grid</groupId>
  5. <artifactId>java-grid-control</artifactId>
  6. <version>1.0.0</version>
  7. <name>JavaGridControl</name>
  8. <description>An alternative app for controlling the NZXT GRID+.</description>
  9. <dependencies>
  10. <dependency>
  11. <groupId>com.fazecast</groupId>
  12. <artifactId>jSerialComm</artifactId>
  13. <version>1.3.11</version>
  14. </dependency>
  15. <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
  16. <dependency>
  17. <groupId>com.google.code.gson</groupId>
  18. <artifactId>gson</artifactId>
  19. <version>2.8.0</version>
  20. </dependency>
  21. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  22. <dependency>
  23. <groupId>org.apache.commons</groupId>
  24. <artifactId>commons-lang3</artifactId>
  25. <version>3.0</version>
  26. </dependency>
  27. </dependencies>
  28. <build>
  29. <finalName>${project.artifactId}-${project.version}.${build.number}</finalName>
  30. <plugins>
  31. <plugin>
  32. <artifactId>maven-assembly-plugin</artifactId>
  33. <executions>
  34. <execution>
  35. <phase>package</phase>
  36. <goals>
  37. <goal>single</goal>
  38. </goals>
  39. <configuration>
  40. <archive>
  41. <manifest>
  42. <addClasspath>true</addClasspath>
  43. <mainClass>eu.tankernn.grid.GridControl</mainClass>
  44. </manifest>
  45. </archive>
  46. <!-- The filename of the assembled distribution file defualt ${project.build.finalName} -->
  47. <finalName>${project.build.finalName}</finalName>
  48. <appendAssemblyId>false</appendAssemblyId>
  49. </configuration>
  50. </execution>
  51. </executions>
  52. <configuration>
  53. <descriptorRefs>
  54. <descriptorRef>jar-with-dependencies</descriptorRef>
  55. </descriptorRefs>
  56. </configuration>
  57. </plugin>
  58. <plugin>
  59. <artifactId>maven-compiler-plugin</artifactId>
  60. <version>3.6.1</version>
  61. <configuration>
  62. <source>1.8</source>
  63. <target>1.8</target>
  64. </configuration>
  65. </plugin>
  66. </plugins>
  67. </build>
  68. <properties>
  69. <build.number>SNAPSHOT</build.number>
  70. </properties>
  71. </project>