dependency-reduced-pom.xml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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-mqtt-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-mqtt</include>
  30. <include>io.netty:netty-codec-mqtt</include>
  31. <include>org.luaj:luaj-jse</include>
  32. </includes>
  33. </artifactSet>
  34. </configuration>
  35. </plugin>
  36. <plugin>
  37. <artifactId>maven-compiler-plugin</artifactId>
  38. <configuration>
  39. <source>${java.version}</source>
  40. <target>${java.version}</target>
  41. <forceJavacCompilerUse>true</forceJavacCompilerUse>
  42. <useIncrementalCompilation>false</useIncrementalCompilation>
  43. <encoding>utf8</encoding>
  44. </configuration>
  45. </plugin>
  46. </plugins>
  47. </build>
  48. <dependencies>
  49. <dependency>
  50. <groupId>org.projectlombok</groupId>
  51. <artifactId>lombok</artifactId>
  52. <version>1.18.26</version>
  53. <scope>compile</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.slf4j</groupId>
  57. <artifactId>slf4j-api</artifactId>
  58. <version>1.7.36</version>
  59. <scope>compile</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>cc.iotkit</groupId>
  63. <artifactId>iot-common-core</artifactId>
  64. <version>0.4.5-SNAPSHOT</version>
  65. <scope>compile</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>cc.iotkit</groupId>
  69. <artifactId>iot-component-base</artifactId>
  70. <version>0.4.5-SNAPSHOT</version>
  71. <scope>compile</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>cc.iotkit</groupId>
  75. <artifactId>iot-data-service</artifactId>
  76. <version>0.4.5-SNAPSHOT</version>
  77. <scope>compile</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>cc.iotkit</groupId>
  81. <artifactId>iot-script-engine</artifactId>
  82. <version>0.4.5-SNAPSHOT</version>
  83. <scope>compile</scope>
  84. </dependency>
  85. </dependencies>
  86. </project>