pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <?xml version="1.0"?>
  2. <project
  3. xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>at.acdp.ur</groupId>
  7. <artifactId>uraxisdaemon</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <name>uraxisdaemon</name>
  10. <packaging>jar</packaging>
  11. <properties>
  12. <undertow.version>2.0.15.Final</undertow.version>
  13. </properties>
  14. <build>
  15. <plugins>
  16. <plugin>
  17. <groupId>org.apache.maven.plugins</groupId>
  18. <artifactId>maven-compiler-plugin</artifactId>
  19. <version>3.8.1</version>
  20. <configuration>
  21. <source>11</source>
  22. <target>11</target>
  23. <excludes>
  24. <exclude>module-info.java</exclude>
  25. </excludes>
  26. </configuration>
  27. </plugin>
  28. <plugin>
  29. <groupId>org.apache.maven.plugins</groupId>
  30. <artifactId>maven-shade-plugin</artifactId>
  31. <version>3.2.1</version>
  32. <executions>
  33. <execution>
  34. <phase>package</phase>
  35. <goals>
  36. <goal>shade</goal>
  37. </goals>
  38. <configuration>
  39. <minimizeJar>true</minimizeJar>
  40. <filters>
  41. <filter>
  42. <artifact>*:*</artifact>
  43. <excludes>
  44. <exclude>META-INF/*.SF</exclude>
  45. <exclude>META-INF/*.DSA</exclude>
  46. <exclude>META-INF/*.RSA</exclude>
  47. </excludes>
  48. </filter>
  49. </filters>
  50. </configuration>
  51. </execution>
  52. </executions>
  53. </plugin>
  54. <plugin>
  55. <groupId>org.apache.maven.plugins</groupId>
  56. <artifactId>maven-jar-plugin</artifactId>
  57. <version>3.1.2</version>
  58. <configuration>
  59. <archive>
  60. <manifest>
  61. <addClasspath>true</addClasspath>
  62. <mainClass>at.acdp.urweb.Main</mainClass>
  63. </manifest>
  64. </archive>
  65. </configuration>
  66. </plugin>
  67. </plugins>
  68. </build>
  69. <dependencies>
  70. <dependency>
  71. <groupId>net.openhft</groupId>
  72. <artifactId>chronicle-bytes</artifactId>
  73. <version>2.19.0</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.nmote.xr</groupId>
  77. <artifactId>nmote-xr</artifactId>
  78. <version>2.2.0</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.slf4j</groupId>
  82. <artifactId>slf4j-api</artifactId>
  83. <version>1.7.30</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.digitalpetri.modbus</groupId>
  87. <artifactId>modbus-master-tcp</artifactId>
  88. <version>1.1.1</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.digitalpetri.modbus</groupId>
  92. <artifactId>modbus-slave-tcp</artifactId>
  93. <version>1.1.1</version>
  94. </dependency>
  95. <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
  96. <dependency>
  97. <groupId>org.junit.jupiter</groupId>
  98. <artifactId>junit-jupiter-api</artifactId>
  99. <version>5.3.1</version>
  100. <scope>test</scope>
  101. </dependency>
  102. <!-- https://mvnrepository.com/artifact/ch.qos.logback/logback-classic -->
  103. <dependency>
  104. <groupId>ch.qos.logback</groupId>
  105. <artifactId>logback-classic</artifactId>
  106. <version>1.2.3</version>
  107. </dependency>
  108. </dependencies>
  109. </project>