pom.xml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>org.sunwin</groupId>
  7. <artifactId>sunwin_metro</artifactId>
  8. <packaging>pom</packaging>
  9. <version>1.0-SNAPSHOT</version>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>2.3.0.RELEASE</version>
  14. <relativePath/> <!-- lookup parent from repository -->
  15. </parent>
  16. <modules>
  17. <module>neo4j_metro</module>
  18. <module>insert_neo4j</module>
  19. </modules>
  20. <dependencies>
  21. <!-- 日志pom -->
  22. <dependency>
  23. <groupId>org.slf4j</groupId>
  24. <artifactId>slf4j-api</artifactId>
  25. <version>1.7.25</version>
  26. <scope>provided</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>log4j</groupId>
  30. <artifactId>log4j</artifactId>
  31. <version>1.2.17</version>
  32. <scope>provided</scope>
  33. </dependency>
  34. <!-- fastJson -->
  35. <dependency>
  36. <groupId>com.alibaba</groupId>
  37. <artifactId>fastjson</artifactId>
  38. <version>1.2.73</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>commons-lang</groupId>
  42. <artifactId>commons-lang</artifactId>
  43. <version>2.6</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>junit</groupId>
  47. <artifactId>junit</artifactId>
  48. <version>4.10</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.chinaway</groupId>
  52. <artifactId>sw-http-client</artifactId>
  53. <version>1.1-test</version>
  54. </dependency>
  55. </dependencies>
  56. </project>