pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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>top.zhixinghe1</groupId>
  7. <artifactId>money-mining</artifactId>
  8. <version>1.0</version>
  9. <properties>
  10. <maven.compiler.source>17</maven.compiler.source>
  11. <maven.compiler.target>17</maven.compiler.target>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. </properties>
  14. <dependencies>
  15. <!-- 文本相似度计算工具 -->
  16. <dependency>
  17. <groupId>org.apache.commons</groupId>
  18. <artifactId>commons-text</artifactId>
  19. <version>1.11.0</version>
  20. </dependency>
  21. <!-- 命令行进度条 -->
  22. <dependency>
  23. <groupId>me.tongfei</groupId>
  24. <artifactId>progressbar</artifactId>
  25. <version>0.10.0</version>
  26. </dependency>
  27. <!-- 稀疏位图 -->
  28. <dependency>
  29. <groupId>org.roaringbitmap</groupId>
  30. <artifactId>RoaringBitmap</artifactId>
  31. <version>1.0.1</version>
  32. </dependency>
  33. <!-- 缓存框架 -->
  34. <dependency>
  35. <groupId>com.github.ben-manes.caffeine</groupId>
  36. <artifactId>caffeine</artifactId>
  37. <version>3.1.8</version>
  38. </dependency>
  39. <!-- https://mvnrepository.com/artifact/cn.hutool/hutool-core -->
  40. <dependency>
  41. <groupId>cn.hutool</groupId>
  42. <artifactId>hutool-core</artifactId>
  43. <version>5.8.25</version>
  44. </dependency>
  45. </dependencies>
  46. <!-- 配置阿里云仓库 -->
  47. <repositories>
  48. <repository>
  49. <id>aliyun-repos</id>
  50. <url>https://maven.aliyun.com/repository/public</url>
  51. <releases>
  52. <enabled>true</enabled>
  53. </releases>
  54. <snapshots>
  55. <enabled>false</enabled>
  56. </snapshots>
  57. </repository>
  58. </repositories>
  59. <pluginRepositories>
  60. <pluginRepository>
  61. <id>aliyun-repos</id>
  62. <url>https://maven.aliyun.com/repository/public</url>
  63. <releases>
  64. <enabled>true</enabled>
  65. </releases>
  66. <snapshots>
  67. <enabled>false</enabled>
  68. </snapshots>
  69. </pluginRepository>
  70. </pluginRepositories>
  71. <build>
  72. <plugins>
  73. <plugin>
  74. <groupId>org.apache.maven.plugins</groupId>
  75. <artifactId>maven-assembly-plugin</artifactId>
  76. <configuration>
  77. <descriptorRefs>
  78. <!--给jar包起的别名-->
  79. <descriptorRef>jar-with-dependencies</descriptorRef>
  80. </descriptorRefs>
  81. <archive>
  82. <manifest>
  83. <addClasspath>true</addClasspath>
  84. <classpathPrefix>lib/</classpathPrefix>
  85. <!--添加项目中主类-->
  86. <mainClass>top.zhixinghe1.money.Application</mainClass>
  87. </manifest>
  88. </archive>
  89. </configuration>
  90. <executions>
  91. <execution>
  92. <id>make-assembly</id>
  93. <phase>package</phase>
  94. <goals>
  95. <goal>single</goal>
  96. </goals>
  97. </execution>
  98. </executions>
  99. </plugin>
  100. </plugins>
  101. </build>
  102. </project>