pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. </dependencies>
  40. <!-- 配置阿里云仓库 -->
  41. <repositories>
  42. <repository>
  43. <id>aliyun-repos</id>
  44. <url>https://maven.aliyun.com/repository/public</url>
  45. <releases>
  46. <enabled>true</enabled>
  47. </releases>
  48. <snapshots>
  49. <enabled>false</enabled>
  50. </snapshots>
  51. </repository>
  52. </repositories>
  53. <pluginRepositories>
  54. <pluginRepository>
  55. <id>aliyun-repos</id>
  56. <url>https://maven.aliyun.com/repository/public</url>
  57. <releases>
  58. <enabled>true</enabled>
  59. </releases>
  60. <snapshots>
  61. <enabled>false</enabled>
  62. </snapshots>
  63. </pluginRepository>
  64. </pluginRepositories>
  65. <build>
  66. <plugins>
  67. <plugin>
  68. <groupId>org.apache.maven.plugins</groupId>
  69. <artifactId>maven-assembly-plugin</artifactId>
  70. <configuration>
  71. <descriptorRefs>
  72. <!--给jar包起的别名-->
  73. <descriptorRef>jar-with-dependencies</descriptorRef>
  74. </descriptorRefs>
  75. <archive>
  76. <manifest>
  77. <addClasspath>true</addClasspath>
  78. <classpathPrefix>lib/</classpathPrefix>
  79. <!--添加项目中主类-->
  80. <mainClass>top.zhixinghe1.money.Application</mainClass>
  81. </manifest>
  82. </archive>
  83. </configuration>
  84. <executions>
  85. <execution>
  86. <id>make-assembly</id>
  87. <phase>package</phase>
  88. <goals>
  89. <goal>single</goal>
  90. </goals>
  91. </execution>
  92. </executions>
  93. </plugin>
  94. </plugins>
  95. </build>
  96. </project>