pom.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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.pro</groupId>
  8. <version>1.20.0-SNAPSHOT</version>
  9. <relativePath>../</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. </dependency>
  31. <dependency>
  32. <groupId>io.vertx</groupId>
  33. <artifactId>vertx-core</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.jetlinks.pro</groupId>
  37. <artifactId>common-component</artifactId>
  38. <version>${project.version}</version>
  39. </dependency>
  40. </dependencies>
  41. </project>