pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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.example</groupId>
  7. <artifactId>cluster-dbapi-java-pro</artifactId>
  8. <version>1.0-SNAPSHOT</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>com.alibaba</groupId>
  24. <artifactId>fastjson</artifactId>
  25. <version>1.2.83</version>
  26. <scope>compile</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.apache.httpcomponents</groupId>
  30. <artifactId>httpclient</artifactId>
  31. <version>4.5.13</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.apache.commons</groupId>
  35. <artifactId>commons-lang3</artifactId>
  36. <version>3.11</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>commons-cli</groupId>
  40. <artifactId>commons-cli</artifactId>
  41. <version>1.3.1</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.clickhouse</groupId>
  45. <artifactId>client-v2</artifactId>
  46. <version>0.7.1</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.apache.logging.log4j</groupId>
  50. <artifactId>log4j-api</artifactId>
  51. <version>2.23.1</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.apache.logging.log4j</groupId>
  55. <artifactId>log4j-core</artifactId>
  56. <version>2.23.1</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.apache.logging.log4j</groupId>
  60. <artifactId>log4j-slf4j2-impl</artifactId>
  61. <version>2.23.1</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.javatuples</groupId>
  65. <artifactId>javatuples</artifactId>
  66. <version>1.2</version>
  67. </dependency>
  68. </dependencies>
  69. </project>