pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>protocol-gateway</artifactId>
  7. <groupId>cc.iotkit</groupId>
  8. <version>0.1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>emqx-component</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>io.vertx</groupId>
  15. <artifactId>vertx-core</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>io.vertx</groupId>
  19. <artifactId>vertx-web-proxy</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>io.vertx</groupId>
  23. <artifactId>vertx-mqtt</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>cc.iotkit</groupId>
  27. <artifactId>model</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>cc.iotkit</groupId>
  31. <artifactId>common</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>cc.iotkit</groupId>
  35. <artifactId>component</artifactId>
  36. </dependency>
  37. </dependencies>
  38. <build>
  39. <plugins>
  40. <plugin>
  41. <groupId>org.apache.maven.plugins</groupId>
  42. <artifactId>maven-shade-plugin</artifactId>
  43. <version>3.2.4</version>
  44. <executions>
  45. <execution>
  46. <phase>package</phase>
  47. <goals>
  48. <goal>shade</goal>
  49. </goals>
  50. </execution>
  51. </executions>
  52. <configuration>
  53. <artifactSet>
  54. <includes>
  55. <include>io.vertx:vertx-core</include>
  56. <include>io.vertx:vertx-web-proxy</include>
  57. <include>io.vertx:vertx-mqtt</include>
  58. </includes>
  59. </artifactSet>
  60. </configuration>
  61. </plugin>
  62. <plugin>
  63. <groupId>org.apache.maven.plugins</groupId>
  64. <artifactId>maven-compiler-plugin</artifactId>
  65. <configuration>
  66. <source>8</source>
  67. <target>8</target>
  68. </configuration>
  69. </plugin>
  70. </plugins>
  71. </build>
  72. </project>