dependency-reduced-pom.xml 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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.5-SNAPSHOT</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <groupId>cc.iotkit</groupId>
  10. <artifactId>iot-emqx-component</artifactId>
  11. <version>0.4.5-SNAPSHOT</version>
  12. <build>
  13. <plugins>
  14. <plugin>
  15. <artifactId>maven-shade-plugin</artifactId>
  16. <version>3.2.4</version>
  17. <executions>
  18. <execution>
  19. <phase>package</phase>
  20. <goals>
  21. <goal>shade</goal>
  22. </goals>
  23. </execution>
  24. </executions>
  25. <configuration>
  26. <artifactSet>
  27. <includes>
  28. <include>io.vertx:vertx-core</include>
  29. <include>io.vertx:vertx-web-proxy</include>
  30. <include>io.vertx:vertx-mqtt</include>
  31. <include>io.vertx:vertx-web</include>
  32. <include>io.vertx:vertx-http-proxy</include>
  33. <include>org.luaj:luaj-jse</include>
  34. <include>io.netty:netty-common</include>
  35. <include>io.netty:netty-transport</include>
  36. <include>io.netty:netty-handler</include>
  37. <include>io.netty:netty-resolver</include>
  38. <include>io.netty:netty-buffer</include>
  39. <include>io.netty:netty-handler</include>
  40. <include>io.netty:netty-proxy</include>
  41. <include>io.netty:netty-codec</include>
  42. <include>io.netty:netty-codec-mqtt</include>
  43. <include>io.netty:netty-codec-dns</include>
  44. <include>io.netty:netty-resolver-dns</include>
  45. <include>io.netty:netty-tcnative-boringssl-static</include>
  46. </includes>
  47. </artifactSet>
  48. </configuration>
  49. </plugin>
  50. <plugin>
  51. <artifactId>maven-compiler-plugin</artifactId>
  52. <configuration>
  53. <source>${java.version}</source>
  54. <target>${java.version}</target>
  55. <forceJavacCompilerUse>true</forceJavacCompilerUse>
  56. <useIncrementalCompilation>false</useIncrementalCompilation>
  57. <encoding>utf8</encoding>
  58. </configuration>
  59. </plugin>
  60. </plugins>
  61. </build>
  62. <dependencies>
  63. <dependency>
  64. <groupId>cc.iotkit</groupId>
  65. <artifactId>iot-common-model</artifactId>
  66. <version>0.4.5-SNAPSHOT</version>
  67. <scope>compile</scope>
  68. </dependency>
  69. <dependency>
  70. <groupId>cc.iotkit</groupId>
  71. <artifactId>iot-common-core</artifactId>
  72. <version>0.4.5-SNAPSHOT</version>
  73. <scope>compile</scope>
  74. </dependency>
  75. <dependency>
  76. <groupId>cc.iotkit</groupId>
  77. <artifactId>iot-component-base</artifactId>
  78. <version>0.4.5-SNAPSHOT</version>
  79. <scope>compile</scope>
  80. </dependency>
  81. <dependency>
  82. <groupId>cc.iotkit</groupId>
  83. <artifactId>iot-data-service</artifactId>
  84. <version>0.4.5-SNAPSHOT</version>
  85. <scope>compile</scope>
  86. </dependency>
  87. <dependency>
  88. <groupId>cc.iotkit</groupId>
  89. <artifactId>iot-script-engine</artifactId>
  90. <version>0.4.5-SNAPSHOT</version>
  91. <scope>compile</scope>
  92. </dependency>
  93. </dependencies>
  94. </project>