pom.xml 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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</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. <plugin>
  20. <groupId>org.apache.maven.plugins</groupId>
  21. <artifactId>maven-assembly-plugin</artifactId>
  22. <version>3.1.1</version>
  23. <configuration>
  24. <archive>
  25. <manifest>
  26. <mainClass>com.feng.fatjar.demo.FatJarMain</mainClass>
  27. </manifest>
  28. </archive>
  29. <descriptorRefs>
  30. <descriptorRef>jar-with-dependencies</descriptorRef>
  31. </descriptorRefs>
  32. </configuration>
  33. <executions>
  34. <execution>
  35. <id>make-assembly</id>
  36. <phase>package</phase>
  37. <goals>
  38. <goal>single</goal>
  39. </goals>
  40. </execution>
  41. </executions>
  42. </plugin>
  43. </plugins>
  44. </build>
  45. <dependencies>
  46. <dependency>
  47. <groupId>org.apache.logging.log4j</groupId>
  48. <artifactId>log4j-api</artifactId>
  49. <version>2.23.1</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.apache.logging.log4j</groupId>
  53. <artifactId>log4j-core</artifactId>
  54. <version>2.23.1</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.apache.logging.log4j</groupId>
  58. <artifactId>log4j-slf4j2-impl</artifactId>
  59. <version>2.23.1</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.apache.commons</groupId>
  63. <artifactId>commons-lang3</artifactId>
  64. <version>3.11</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>commons-io</groupId>
  68. <artifactId>commons-io</artifactId>
  69. <version>2.18.0</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.google.code.gson</groupId>
  73. <artifactId>gson</artifactId>
  74. <version>2.11.0</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>it.unimi.dsi</groupId>
  78. <artifactId>fastutil</artifactId>
  79. <version>8.5.15</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.github.luben</groupId>
  83. <artifactId>zstd-jni</artifactId>
  84. <version>1.5.6-8</version>
  85. </dependency>
  86. </dependencies>
  87. </project>