pom.xml 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>iot-ctwing-component</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>cc.iotkit</groupId>
  15. <artifactId>iot-component-base</artifactId>
  16. </dependency>
  17. <!--====================第三方库===================-->
  18. <dependency>
  19. <groupId>org.projectlombok</groupId>
  20. <artifactId>lombok</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>io.vertx</groupId>
  24. <artifactId>vertx-web-proxy</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.ctg.ag</groupId>
  28. <artifactId>ctg-ag-sdk-core</artifactId>
  29. <version>2.5.0-SNAPSHOT</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.ctg.ag</groupId>
  33. <artifactId>ag-sdk-biz-84356.tar.gz</artifactId>
  34. <version>20220603.182201-SNAPSHOT</version>
  35. </dependency>
  36. </dependencies>
  37. <build>
  38. <plugins>
  39. <plugin>
  40. <groupId>org.apache.maven.plugins</groupId>
  41. <artifactId>maven-shade-plugin</artifactId>
  42. <version>3.2.4</version>
  43. <executions>
  44. <execution>
  45. <phase>package</phase>
  46. <goals>
  47. <goal>shade</goal>
  48. </goals>
  49. </execution>
  50. </executions>
  51. <configuration>
  52. <artifactSet>
  53. <includes>
  54. <include>io.vertx:vertx-web-proxy</include>
  55. <include>io.vertx:vertx-web</include>
  56. <include>io.vertx:vertx-bridge-common</include>
  57. <include>io.vertx:vertx-http-proxy</include>
  58. <include>io.vertx:vertx-core</include>
  59. <include>io.netty:netty-codec-http2</include>
  60. <include>com.ctg.ag:ctg-ag-sdk-core</include>
  61. <include>com.ctg.ag:ag-sdk-biz-84356.tar.gz</include>
  62. <include>org.apache.httpcomponents:httpasyncclient</include>
  63. </includes>
  64. </artifactSet>
  65. </configuration>
  66. </plugin>
  67. <plugin>
  68. <groupId>org.apache.maven.plugins</groupId>
  69. <artifactId>maven-compiler-plugin</artifactId>
  70. <configuration>
  71. <source>11</source>
  72. <target>11</target>
  73. </configuration>
  74. </plugin>
  75. </plugins>
  76. </build>
  77. </project>