dependency-reduced-pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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.0-SNAPSHOT</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>iot-emqx-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-web-proxy</include>
  28. <include>io.vertx:vertx-mqtt</include>
  29. <include>io.vertx:vertx-web</include>
  30. <include>io.vertx:vertx-http-proxy</include>
  31. <include>org.luaj:luaj-jse</include>
  32. <include>io.netty:netty-common</include>
  33. <include>io.netty:netty-transport</include>
  34. <include>io.netty:netty-handler</include>
  35. <include>io.netty:netty-resolver</include>
  36. <include>io.netty:netty-buffer</include>
  37. <include>io.netty:netty-handler</include>
  38. <include>io.netty:netty-proxy</include>
  39. <include>io.netty:netty-codec</include>
  40. <include>io.netty:netty-codec-mqtt</include>
  41. <include>io.netty:netty-codec-dns</include>
  42. <include>io.netty:netty-resolver-dns</include>
  43. <include>io.netty:netty-tcnative-boringssl-static</include>
  44. </includes>
  45. </artifactSet>
  46. </configuration>
  47. </plugin>
  48. <plugin>
  49. <artifactId>maven-compiler-plugin</artifactId>
  50. <configuration>
  51. <source>11</source>
  52. <target>11</target>
  53. <forceJavacCompilerUse>true</forceJavacCompilerUse>
  54. <useIncrementalCompilation>false</useIncrementalCompilation>
  55. </configuration>
  56. </plugin>
  57. </plugins>
  58. </build>
  59. <dependencies>
  60. <dependency>
  61. <groupId>io.vertx</groupId>
  62. <artifactId>vertx-core</artifactId>
  63. <version>4.2.2</version>
  64. <scope>provided</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>io.vertx</groupId>
  68. <artifactId>vertx-web-proxy</artifactId>
  69. <version>4.2.2</version>
  70. <scope>provided</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>io.vertx</groupId>
  74. <artifactId>vertx-mqtt</artifactId>
  75. <version>4.2.2</version>
  76. <scope>provided</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.luaj</groupId>
  80. <artifactId>luaj-jse</artifactId>
  81. <version>3.0.1</version>
  82. <scope>provided</scope>
  83. </dependency>
  84. <dependency>
  85. <groupId>cc.iotkit</groupId>
  86. <artifactId>iot-model</artifactId>
  87. <version>0.4.0-SNAPSHOT</version>
  88. <scope>compile</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>cc.iotkit</groupId>
  92. <artifactId>iot-common</artifactId>
  93. <version>0.4.0-SNAPSHOT</version>
  94. <scope>compile</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>cc.iotkit</groupId>
  98. <artifactId>iot-component-base</artifactId>
  99. <version>0.4.0-SNAPSHOT</version>
  100. <scope>compile</scope>
  101. </dependency>
  102. <dependency>
  103. <groupId>cc.iotkit</groupId>
  104. <artifactId>iot-data-service</artifactId>
  105. <version>0.4.0-SNAPSHOT</version>
  106. <scope>compile</scope>
  107. </dependency>
  108. </dependencies>
  109. </project>