dependency-reduced-pom.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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>${revision}</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>${java.version}</source>
  40. <target>${java.version}</target>
  41. <encoding>utf8</encoding>
  42. </configuration>
  43. </plugin>
  44. </plugins>
  45. </build>
  46. <dependencies>
  47. <dependency>
  48. <groupId>org.projectlombok</groupId>
  49. <artifactId>lombok</artifactId>
  50. <version>1.18.26</version>
  51. <scope>compile</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>cc.iotkit</groupId>
  55. <artifactId>iot-component-base</artifactId>
  56. <version>0.4.5-SNAPSHOT</version>
  57. <scope>compile</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>cc.iotkit</groupId>
  61. <artifactId>iot-script-engine</artifactId>
  62. <version>0.4.5-SNAPSHOT</version>
  63. <scope>compile</scope>
  64. </dependency>
  65. </dependencies>
  66. </project>