pom.xml 2.1 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.assembly.compiler</groupId>
  5. <version>1.0</version>
  6. <packaging>jar</packaging>
  7. <url>http://tankernn.eu</url>
  8. <name>Tankernn Assembly Compiler</name>
  9. <dependencies>
  10. <dependency>
  11. <groupId>com.pi4j</groupId>
  12. <artifactId>pi4j-core</artifactId>
  13. <version>1.0</version>
  14. </dependency>
  15. <!-- https://mvnrepository.com/artifact/commons-cli/commons-cli -->
  16. <dependency>
  17. <groupId>commons-cli</groupId>
  18. <artifactId>commons-cli</artifactId>
  19. <version>1.3</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.apache.logging.log4j</groupId>
  23. <artifactId>log4j-api</artifactId>
  24. <version>2.6.2</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.apache.logging.log4j</groupId>
  28. <artifactId>log4j-core</artifactId>
  29. <version>2.6.2</version>
  30. </dependency>
  31. </dependencies>
  32. <build>
  33. <plugins>
  34. <plugin>
  35. <artifactId>maven-assembly-plugin</artifactId>
  36. <executions>
  37. <execution>
  38. <phase>package</phase>
  39. <goals>
  40. <goal>single</goal>
  41. </goals>
  42. <configuration>
  43. <archive>
  44. <manifest>
  45. <addClasspath>true</addClasspath>
  46. <mainClass>eu.tankernn.assembly.compiler.Assemble</mainClass>
  47. </manifest>
  48. </archive>
  49. <!-- The filename of the assembled distribution file defualt ${project.build.finalName} -->
  50. <finalName>${project.build.finalName}</finalName>
  51. <appendAssemblyId>false</appendAssemblyId>
  52. </configuration>
  53. </execution>
  54. </executions>
  55. <configuration>
  56. <descriptorRefs>
  57. <descriptorRef>jar-with-dependencies</descriptorRef>
  58. </descriptorRefs>
  59. </configuration>
  60. </plugin>
  61. </plugins>
  62. </build>
  63. <properties>
  64. <maven.compiler.source>1.8</maven.compiler.source>
  65. <maven.compiler.target>1.8</maven.compiler.target>
  66. </properties>
  67. <artifactId>tankernn-assembly-compiler</artifactId>
  68. </project>