dependency-reduced-pom.xml 2.4 KB

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