pom.xml 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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>protocol-gateway</artifactId>
  7. <groupId>cc.iotkit</groupId>
  8. <version>0.2.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ctwing-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>component</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.ctg.ag</groupId>
  31. <artifactId>ctg-ag-sdk-core</artifactId>
  32. <version>2.5.0-SNAPSHOT</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.ctg.ag</groupId>
  36. <artifactId>ag-sdk-biz-84356.tar.gz</artifactId>
  37. <version>20220603.182201-SNAPSHOT</version>
  38. </dependency>
  39. </dependencies>
  40. <build>
  41. <plugins>
  42. <plugin>
  43. <groupId>org.apache.maven.plugins</groupId>
  44. <artifactId>maven-shade-plugin</artifactId>
  45. <version>3.2.4</version>
  46. <executions>
  47. <execution>
  48. <phase>package</phase>
  49. <goals>
  50. <goal>shade</goal>
  51. </goals>
  52. </execution>
  53. </executions>
  54. <configuration>
  55. <artifactSet>
  56. <includes>
  57. <include>io.vertx:vertx-web-proxy</include>
  58. <include>io.vertx:vertx-web</include>
  59. <include>io.vertx:vertx-bridge-common</include>
  60. <include>io.vertx:vertx-http-proxy</include>
  61. <include>io.vertx:vertx-core</include>
  62. <include>io.netty:netty-codec-http2</include>
  63. <include>com.ctg.ag:ctg-ag-sdk-core</include>
  64. <include>com.ctg.ag:ag-sdk-biz-84356.tar.gz</include>
  65. <include>org.apache.httpcomponents:httpasyncclient</include>
  66. </includes>
  67. </artifactSet>
  68. </configuration>
  69. </plugin>
  70. <plugin>
  71. <groupId>org.apache.maven.plugins</groupId>
  72. <artifactId>maven-compiler-plugin</artifactId>
  73. <configuration>
  74. <source>8</source>
  75. <target>8</target>
  76. </configuration>
  77. </plugin>
  78. </plugins>
  79. </build>
  80. </project>