pomDemoProject.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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>java-tsdb-hf-stck-demo</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>org.apache.logging.log4j</groupId>
  24. <artifactId>log4j-api</artifactId>
  25. <version>2.23.1</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.apache.logging.log4j</groupId>
  29. <artifactId>log4j-core</artifactId>
  30. <version>2.23.1</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.apache.logging.log4j</groupId>
  34. <artifactId>log4j-slf4j2-impl</artifactId>
  35. <version>2.23.1</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.apache.commons</groupId>
  39. <artifactId>commons-lang3</artifactId>
  40. <version>3.11</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>commons-io</groupId>
  44. <artifactId>commons-io</artifactId>
  45. <version>2.18.0</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.google.code.gson</groupId>
  49. <artifactId>gson</artifactId>
  50. <version>2.11.0</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>it.unimi.dsi</groupId>
  54. <artifactId>fastutil</artifactId>
  55. <version>8.5.15</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.github.luben</groupId>
  59. <artifactId>zstd-jni</artifactId>
  60. <version>1.5.6-8</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.example</groupId>
  64. <artifactId>java-tsdb-hf-stck</artifactId>
  65. <version>1.0.0</version>
  66. <scope>system</scope>
  67. <systemPath>${basedir}/lib/dbapi.jar</systemPath>
  68. </dependency>
  69. </dependencies>
  70. </project>