pom.xml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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>network-core</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.jetlinks</groupId>
  16. <artifactId>rule-engine-support</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.hswebframework</groupId>
  20. <artifactId>hsweb-easy-orm-rdb</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.hswebframework.web</groupId>
  24. <artifactId>hsweb-starter</artifactId>
  25. <version>${hsweb.framework.version}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.bouncycastle</groupId>
  29. <artifactId>bcprov-jdk15on</artifactId>
  30. <version>1.67</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>io.vertx</groupId>
  34. <artifactId>vertx-core</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.jetlinks.community</groupId>
  38. <artifactId>common-component</artifactId>
  39. <version>${project.version}</version>
  40. <scope>compile</scope>
  41. </dependency>
  42. </dependencies>
  43. </project>