pom.xml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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>iot-components</artifactId>
  7. <groupId>cc.iotkit</groupId>
  8. <version>0.4.2-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>iot-http-biz-component</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.projectlombok</groupId>
  19. <artifactId>lombok</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>io.vertx</groupId>
  23. <artifactId>vertx-web-proxy</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>cc.iotkit</groupId>
  27. <artifactId>iot-component-base</artifactId>
  28. </dependency>
  29. </dependencies>
  30. <build>
  31. <plugins>
  32. <plugin>
  33. <groupId>org.apache.maven.plugins</groupId>
  34. <artifactId>maven-shade-plugin</artifactId>
  35. <version>3.2.4</version>
  36. <executions>
  37. <execution>
  38. <phase>package</phase>
  39. <goals>
  40. <goal>shade</goal>
  41. </goals>
  42. </execution>
  43. </executions>
  44. <configuration>
  45. <artifactSet>
  46. <includes>
  47. <include>io.vertx:vertx-web-proxy</include>
  48. <include>io.vertx:vertx-web</include>
  49. <include>io.vertx:vertx-bridge-common</include>
  50. <include>io.vertx:vertx-http-proxy</include>
  51. <include>io.vertx:vertx-core</include>
  52. <include>io.netty:netty-codec-http2</include>
  53. </includes>
  54. </artifactSet>
  55. </configuration>
  56. </plugin>
  57. <plugin>
  58. <groupId>org.apache.maven.plugins</groupId>
  59. <artifactId>maven-compiler-plugin</artifactId>
  60. <configuration>
  61. <source>11</source>
  62. <target>11</target>
  63. </configuration>
  64. </plugin>
  65. </plugins>
  66. </build>
  67. </project>