dependency-reduced-pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <parent>
  4. <artifactId>iot-components</artifactId>
  5. <groupId>cc.iotkit</groupId>
  6. <version>0.4.2-SNAPSHOT</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>iot-mqtt-component</artifactId>
  10. <build>
  11. <plugins>
  12. <plugin>
  13. <artifactId>maven-shade-plugin</artifactId>
  14. <version>3.2.4</version>
  15. <executions>
  16. <execution>
  17. <phase>package</phase>
  18. <goals>
  19. <goal>shade</goal>
  20. </goals>
  21. </execution>
  22. </executions>
  23. <configuration>
  24. <artifactSet>
  25. <includes>
  26. <include>io.vertx:vertx-core</include>
  27. <include>io.vertx:vertx-mqtt</include>
  28. <include>io.netty:netty-codec-mqtt</include>
  29. <include>org.luaj:luaj-jse</include>
  30. </includes>
  31. </artifactSet>
  32. </configuration>
  33. </plugin>
  34. <plugin>
  35. <artifactId>maven-compiler-plugin</artifactId>
  36. <configuration>
  37. <source>11</source>
  38. <target>11</target>
  39. <forceJavacCompilerUse>true</forceJavacCompilerUse>
  40. <useIncrementalCompilation>false</useIncrementalCompilation>
  41. </configuration>
  42. </plugin>
  43. </plugins>
  44. </build>
  45. <dependencies>
  46. <dependency>
  47. <groupId>io.vertx</groupId>
  48. <artifactId>vertx-core</artifactId>
  49. <version>4.2.2</version>
  50. <scope>provided</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>io.vertx</groupId>
  54. <artifactId>vertx-mqtt</artifactId>
  55. <version>4.2.2</version>
  56. <scope>provided</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>io.netty</groupId>
  60. <artifactId>netty-codec-mqtt</artifactId>
  61. <version>4.1.72.Final</version>
  62. <scope>provided</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.projectlombok</groupId>
  66. <artifactId>lombok</artifactId>
  67. <version>1.18.24</version>
  68. <scope>compile</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.slf4j</groupId>
  72. <artifactId>slf4j-api</artifactId>
  73. <version>1.7.32</version>
  74. <scope>compile</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.luaj</groupId>
  78. <artifactId>luaj-jse</artifactId>
  79. <version>3.0.1</version>
  80. <scope>provided</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>cc.iotkit</groupId>
  84. <artifactId>iot-common</artifactId>
  85. <version>0.4.2-SNAPSHOT</version>
  86. <scope>compile</scope>
  87. </dependency>
  88. <dependency>
  89. <groupId>cc.iotkit</groupId>
  90. <artifactId>iot-component-base</artifactId>
  91. <version>0.4.2-SNAPSHOT</version>
  92. <scope>compile</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>cc.iotkit</groupId>
  96. <artifactId>iot-data-service</artifactId>
  97. <version>0.4.2-SNAPSHOT</version>
  98. <scope>compile</scope>
  99. </dependency>
  100. </dependencies>
  101. </project>