pom.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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>kgraph</artifactId>
  7. <groupId>com.kgraph</groupId>
  8. <version>1.0.2</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>kgraph-graph</artifactId>
  12. <description>
  13. graph模块
  14. </description>
  15. <dependencies>
  16. <!-- 通用工具-->
  17. <dependency>
  18. <groupId>com.kgraph</groupId>
  19. <artifactId>kgraph-common</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-data-neo4j</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>io.github.classgraph</groupId>
  27. <artifactId>classgraph</artifactId>
  28. <version>4.8.86</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.projectlombok</groupId>
  32. <artifactId>lombok</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.junit.jupiter</groupId>
  36. <artifactId>junit-jupiter</artifactId>
  37. <scope>test</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-test</artifactId>
  42. <version>2.3.3.RELEASE</version>
  43. <scope>test</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>io.swagger</groupId>
  47. <artifactId>swagger-models</artifactId>
  48. <version>1.6.2</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.kgraph</groupId>
  52. <artifactId>kgraph-system</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.pdfbox</groupId>
  56. <artifactId>pdfbox</artifactId>
  57. <version>2.0.27</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.apache.httpcomponents</groupId>
  61. <artifactId>httpclient</artifactId>
  62. <version>4.5.14</version>
  63. </dependency>
  64. </dependencies>
  65. </project>