pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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>network-component</artifactId>
  7. <groupId>org.jetlinks.community</groupId>
  8. <version>2.0.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>http-component</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework</groupId>
  15. <artifactId>spring-webflux</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.hswebframework.web</groupId>
  19. <artifactId>hsweb-core</artifactId>
  20. <version>${hsweb.framework.version}</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.jetlinks.community</groupId>
  24. <artifactId>network-core</artifactId>
  25. <version>${project.version}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>io.vertx</groupId>
  29. <artifactId>vertx-core</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>io.vertx</groupId>
  33. <artifactId>vertx-web-client</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>io.vertx</groupId>
  37. <artifactId>vertx-web</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>io.projectreactor.netty</groupId>
  41. <artifactId>reactor-netty</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>${project.groupId}</groupId>
  45. <artifactId>gateway-component</artifactId>
  46. <version>${project.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>net.bytebuddy</groupId>
  50. <artifactId>byte-buddy</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>net.bytebuddy</groupId>
  54. <artifactId>byte-buddy-agent</artifactId>
  55. </dependency>
  56. </dependencies>
  57. </project>