pom.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. </dependencies>
  22. <build>
  23. <plugins>
  24. <plugin>
  25. <artifactId>maven-assembly-plugin</artifactId>
  26. <executions>
  27. <execution>
  28. <phase>package</phase>
  29. <goals>
  30. <goal>single</goal>
  31. </goals>
  32. <configuration>
  33. <archive>
  34. <manifest>
  35. <addClasspath>true</addClasspath>
  36. <mainClass>eu.tankernn.assembly.compiler.Assemble</mainClass>
  37. </manifest>
  38. </archive>
  39. <!-- The filename of the assembled distribution file defualt ${project.build.finalName} -->
  40. <finalName>${project.build.finalName}</finalName>
  41. <appendAssemblyId>false</appendAssemblyId>
  42. </configuration>
  43. </execution>
  44. </executions>
  45. <configuration>
  46. <descriptorRefs>
  47. <descriptorRef>jar-with-dependencies</descriptorRef>
  48. </descriptorRefs>
  49. </configuration>
  50. </plugin>
  51. </plugins>
  52. </build>
  53. <properties>
  54. <maven.compiler.source>1.8</maven.compiler.source>
  55. <maven.compiler.target>1.8</maven.compiler.target>
  56. </properties>
  57. <artifactId>tankernn-assembly-compiler</artifactId>
  58. </project>