pom.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>tcp-component</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>${project.groupId}</groupId>
  16. <artifactId>network-core</artifactId>
  17. <version>${project.version}</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>io.vertx</groupId>
  21. <artifactId>vertx-core</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>${project.groupId}</groupId>
  25. <artifactId>gateway-component</artifactId>
  26. <version>${project.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.apache.commons</groupId>
  30. <artifactId>commons-text</artifactId>
  31. <version>1.10.0</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.jetlinks.community</groupId>
  35. <artifactId>script-component</artifactId>
  36. <version>${project.version}</version>
  37. <scope>compile</scope>
  38. </dependency>
  39. </dependencies>
  40. </project>