dependency-reduced-pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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.3.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>8</source>
  38. <target>8</target>
  39. </configuration>
  40. </plugin>
  41. </plugins>
  42. </build>
  43. <dependencies>
  44. <dependency>
  45. <groupId>io.vertx</groupId>
  46. <artifactId>vertx-core</artifactId>
  47. <version>4.2.2</version>
  48. <scope>provided</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>io.vertx</groupId>
  52. <artifactId>vertx-mqtt</artifactId>
  53. <version>4.2.2</version>
  54. <scope>provided</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>io.netty</groupId>
  58. <artifactId>netty-codec-mqtt</artifactId>
  59. <version>4.1.72.Final</version>
  60. <scope>provided</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.projectlombok</groupId>
  64. <artifactId>lombok</artifactId>
  65. <version>1.18.22</version>
  66. <scope>compile</scope>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.slf4j</groupId>
  70. <artifactId>slf4j-api</artifactId>
  71. <version>1.7.32</version>
  72. <scope>compile</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.luaj</groupId>
  76. <artifactId>luaj-jse</artifactId>
  77. <version>3.0.1</version>
  78. <scope>provided</scope>
  79. </dependency>
  80. <dependency>
  81. <groupId>cc.iotkit</groupId>
  82. <artifactId>iot-common</artifactId>
  83. <version>0.3.2-SNAPSHOT</version>
  84. <scope>compile</scope>
  85. </dependency>
  86. <dependency>
  87. <groupId>cc.iotkit</groupId>
  88. <artifactId>iot-component-base</artifactId>
  89. <version>0.3.2-SNAPSHOT</version>
  90. <scope>compile</scope>
  91. </dependency>
  92. <dependency>
  93. <groupId>cc.iotkit</groupId>
  94. <artifactId>iot-dao</artifactId>
  95. <version>0.3.2-SNAPSHOT</version>
  96. <scope>compile</scope>
  97. </dependency>
  98. </dependencies>
  99. </project>