pom.xml 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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>com.vcarecity.csv</groupId>
  7. <artifactId>db-data-to-csv</artifactId>
  8. <version>1.0.0</version>
  9. <build>
  10. <plugins>
  11. <plugin>
  12. <groupId>org.apache.maven.plugins</groupId>
  13. <artifactId>maven-compiler-plugin</artifactId>
  14. <configuration>
  15. <source>8</source>
  16. <target>8</target>
  17. </configuration>
  18. </plugin>
  19. </plugins>
  20. </build>
  21. <dependencies>
  22. <dependency>
  23. <groupId>mysql</groupId>
  24. <artifactId>mysql-connector-java</artifactId>
  25. <version>8.0.18</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.apache.commons</groupId>
  29. <artifactId>commons-text</artifactId>
  30. <version>1.8</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.apache.commons</groupId>
  34. <artifactId>commons-csv</artifactId>
  35. <version>1.7</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.slf4j</groupId>
  39. <artifactId>slf4j-api</artifactId>
  40. <version>1.7.29</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>ch.qos.logback</groupId>
  44. <artifactId>logback-classic</artifactId>
  45. <version>1.2.3</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.projectlombok</groupId>
  49. <artifactId>lombok</artifactId>
  50. <version>1.18.10</version>
  51. <scope>provided</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.zaxxer</groupId>
  55. <artifactId>HikariCP</artifactId>
  56. <version>3.4.1</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.google.inject</groupId>
  60. <artifactId>guice</artifactId>
  61. <version>4.2.2</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.google.inject.extensions</groupId>
  65. <artifactId>guice-assistedinject</artifactId>
  66. <version>4.2.2</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.fasterxml.jackson.dataformat</groupId>
  70. <artifactId>jackson-dataformat-yaml</artifactId>
  71. <version>2.10.1</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.fasterxml.jackson.core</groupId>
  75. <artifactId>jackson-databind</artifactId>
  76. <version>2.10.1</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>me.yuxiaoyao.lang</groupId>
  80. <artifactId>configuration-loader</artifactId>
  81. <version>2.0.0</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.apache.shardingsphere</groupId>
  85. <artifactId>sharding-jdbc-core</artifactId>
  86. <version>4.0.0-RC2</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>javax.persistence</groupId>
  90. <artifactId>persistence-api</artifactId>
  91. <version>1.0.2</version>
  92. </dependency>
  93. </dependencies>
  94. </project>