dependency-reduced-pom.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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.3-SNAPSHOT</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>iot-http-biz-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-web-proxy</include>
  27. <include>io.vertx:vertx-web</include>
  28. <include>io.vertx:vertx-bridge-common</include>
  29. <include>io.vertx:vertx-http-proxy</include>
  30. <include>io.vertx:vertx-core</include>
  31. <include>io.netty:netty-codec-http2</include>
  32. </includes>
  33. </artifactSet>
  34. </configuration>
  35. </plugin>
  36. <plugin>
  37. <artifactId>maven-compiler-plugin</artifactId>
  38. <configuration>
  39. <source>11</source>
  40. <target>11</target>
  41. </configuration>
  42. </plugin>
  43. </plugins>
  44. </build>
  45. <dependencies>
  46. <dependency>
  47. <groupId>org.projectlombok</groupId>
  48. <artifactId>lombok</artifactId>
  49. <version>1.18.24</version>
  50. <scope>compile</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>io.vertx</groupId>
  54. <artifactId>vertx-web-proxy</artifactId>
  55. <version>4.2.2</version>
  56. <scope>provided</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>cc.iotkit</groupId>
  60. <artifactId>iot-component-base</artifactId>
  61. <version>0.4.3-SNAPSHOT</version>
  62. <scope>compile</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>cc.iotkit</groupId>
  66. <artifactId>iot-script-engine</artifactId>
  67. <version>0.4.3-SNAPSHOT</version>
  68. <scope>compile</scope>
  69. </dependency>
  70. </dependencies>
  71. </project>