dependency-reduced-pom.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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>protocol-gateway</artifactId>
  5. <groupId>cc.iotkit</groupId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>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. </includes>
  29. </artifactSet>
  30. </configuration>
  31. </plugin>
  32. <plugin>
  33. <artifactId>maven-compiler-plugin</artifactId>
  34. <configuration>
  35. <source>8</source>
  36. <target>8</target>
  37. </configuration>
  38. </plugin>
  39. </plugins>
  40. </build>
  41. <dependencies>
  42. <dependency>
  43. <groupId>io.vertx</groupId>
  44. <artifactId>vertx-core</artifactId>
  45. <version>4.2.6</version>
  46. <scope>provided</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>io.vertx</groupId>
  50. <artifactId>vertx-mqtt</artifactId>
  51. <version>4.2.6</version>
  52. <scope>provided</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.projectlombok</groupId>
  56. <artifactId>lombok</artifactId>
  57. <version>1.18.22</version>
  58. <scope>compile</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.slf4j</groupId>
  62. <artifactId>slf4j-api</artifactId>
  63. <version>1.7.32</version>
  64. <scope>compile</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>cc.iotkit</groupId>
  68. <artifactId>common</artifactId>
  69. <version>0.0.1-SNAPSHOT</version>
  70. <scope>compile</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>cc.iotkit</groupId>
  74. <artifactId>component</artifactId>
  75. <version>0.0.1-SNAPSHOT</version>
  76. <scope>compile</scope>
  77. </dependency>
  78. </dependencies>
  79. </project>