dependency-reduced-pom.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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.2.1-SNAPSHOT</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>ctwing-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. <include>com.ctg.ag:ctg-ag-sdk-core</include>
  33. <include>com.ctg.ag:ag-sdk-biz-84356.tar.gz</include>
  34. <include>org.apache.httpcomponents:httpasyncclient</include>
  35. </includes>
  36. </artifactSet>
  37. </configuration>
  38. </plugin>
  39. <plugin>
  40. <artifactId>maven-compiler-plugin</artifactId>
  41. <configuration>
  42. <source>8</source>
  43. <target>8</target>
  44. </configuration>
  45. </plugin>
  46. </plugins>
  47. </build>
  48. <dependencies>
  49. <dependency>
  50. <groupId>org.projectlombok</groupId>
  51. <artifactId>lombok</artifactId>
  52. <version>1.18.22</version>
  53. <scope>compile</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>io.vertx</groupId>
  57. <artifactId>vertx-web-proxy</artifactId>
  58. <version>4.2.2</version>
  59. <scope>provided</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>cc.iotkit</groupId>
  63. <artifactId>component</artifactId>
  64. <version>0.2.1-SNAPSHOT</version>
  65. <scope>compile</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.ctg.ag</groupId>
  69. <artifactId>ctg-ag-sdk-core</artifactId>
  70. <version>2.5.0-SNAPSHOT</version>
  71. <scope>provided</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.ctg.ag</groupId>
  75. <artifactId>ag-sdk-biz-84356.tar.gz</artifactId>
  76. <version>20220603.182201-SNAPSHOT</version>
  77. <scope>provided</scope>
  78. </dependency>
  79. </dependencies>
  80. <properties>
  81. <maven.compiler.target>8</maven.compiler.target>
  82. <maven.compiler.source>8</maven.compiler.source>
  83. </properties>
  84. </project>