dependency-reduced-pom.xml 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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>${revision}</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>${java.version}</source>
  52. <target>${java.version}</target>
  53. <forceJavacCompilerUse>true</forceJavacCompilerUse>
  54. <useIncrementalCompilation>false</useIncrementalCompilation>
  55. <encoding>utf8</encoding>
  56. </configuration>
  57. </plugin>
  58. </plugins>
  59. </build>
  60. <dependencies>
  61. <dependency>
  62. <groupId>cc.iotkit</groupId>
  63. <artifactId>iot-common-model</artifactId>
  64. <version>0.4.5-SNAPSHOT</version>
  65. <scope>compile</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>cc.iotkit</groupId>
  69. <artifactId>iot-common-core</artifactId>
  70. <version>0.4.5-SNAPSHOT</version>
  71. <scope>compile</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>cc.iotkit</groupId>
  75. <artifactId>iot-component-base</artifactId>
  76. <version>0.4.5-SNAPSHOT</version>
  77. <scope>compile</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>cc.iotkit</groupId>
  81. <artifactId>iot-data-service</artifactId>
  82. <version>0.4.5-SNAPSHOT</version>
  83. <scope>compile</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>cc.iotkit</groupId>
  87. <artifactId>iot-script-engine</artifactId>
  88. <version>0.4.5-SNAPSHOT</version>
  89. <scope>compile</scope>
  90. </dependency>
  91. </dependencies>
  92. </project>