pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Neo4j dependency -->
  3. <project xmlns="http://maven.apache.org/POM/4.0.0"
  4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  6. <parent>
  7. <artifactId>sunwin_metro</artifactId>
  8. <groupId>org.sunwin</groupId>
  9. <version>1.0-SNAPSHOT</version>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>neo4j_metro</artifactId>
  13. <properties>
  14. <java.version>1.8</java.version>
  15. </properties>
  16. <dependencies>
  17. <!-- http 客戶端 -->
  18. <dependency>
  19. <groupId>org.apache.httpcomponents</groupId>
  20. <artifactId>httpclient</artifactId>
  21. <version>4.5.9</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.apache.httpcomponents</groupId>
  25. <artifactId>httpmime</artifactId>
  26. <version>4.5.3</version>
  27. </dependency>
  28. <!-- The client -->
  29. <dependency>
  30. <groupId>io.prometheus</groupId>
  31. <artifactId>simpleclient</artifactId>
  32. <version>0.10.0</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>io.prometheus</groupId>
  36. <artifactId>simpleclient_pushgateway</artifactId>
  37. <version>0.10.0</version>
  38. </dependency>
  39. <!-- 数据库链接池 -->
  40. <dependency>
  41. <groupId>org.apache.commons</groupId>
  42. <artifactId>commons-dbcp2</artifactId>
  43. <version>2.1.1</version>
  44. </dependency>
  45. <!-- 依赖 impala-->
  46. <dependency>
  47. <groupId>com.cloudera.impala</groupId>
  48. <artifactId>ImpalaJDBC41</artifactId>
  49. <version>2.6.4</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.neo4j.driver</groupId>
  53. <artifactId>neo4j-java-driver</artifactId>
  54. <version>4.0.1</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-data-neo4j</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-web</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.neo4j</groupId>
  66. <artifactId>neo4j-ogm-http-driver</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.projectlombok</groupId>
  70. <artifactId>lombok</artifactId>
  71. <optional>true</optional>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-starter-test</artifactId>
  76. <scope>test</scope>
  77. <exclusions>
  78. <exclusion>
  79. <groupId>org.junit.vintage</groupId>
  80. <artifactId>junit-vintage-engine</artifactId>
  81. </exclusion>
  82. </exclusions>
  83. </dependency>
  84. <dependency>
  85. <groupId>junit</groupId>
  86. <artifactId>junit</artifactId>
  87. <scope>test</scope>
  88. </dependency>
  89. <!--读写excel-->
  90. <dependency>
  91. <groupId>com.alibaba</groupId>
  92. <artifactId>easyexcel</artifactId>
  93. <version>2.2.4</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.apache.poi</groupId>
  97. <artifactId>poi</artifactId>
  98. <version>3.17</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.apache.poi</groupId>
  102. <artifactId>poi-ooxml</artifactId>
  103. <version>3.17</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>com.alibaba.ververica</groupId>
  107. <artifactId>flink-connector-mysql-cdc</artifactId>
  108. <version>1.2.0</version>
  109. <scope>compile</scope>
  110. </dependency>
  111. </dependencies>
  112. <build>
  113. <plugins>
  114. <plugin>
  115. <groupId>org.springframework.boot</groupId>
  116. <artifactId>spring-boot-maven-plugin</artifactId>
  117. </plugin>
  118. </plugins>
  119. </build>
  120. </project>