pom.xml 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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-SNAPSHOT</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. </dependencies>
  28. <!-- 配置阿里云仓库 -->
  29. <repositories>
  30. <repository>
  31. <id>aliyun-repos</id>
  32. <url>https://maven.aliyun.com/repository/public</url>
  33. <releases>
  34. <enabled>true</enabled>
  35. </releases>
  36. <snapshots>
  37. <enabled>false</enabled>
  38. </snapshots>
  39. </repository>
  40. </repositories>
  41. <pluginRepositories>
  42. <pluginRepository>
  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. </pluginRepository>
  52. </pluginRepositories>
  53. <build>
  54. <plugins>
  55. <plugin>
  56. <groupId>org.apache.maven.plugins</groupId>
  57. <artifactId>maven-assembly-plugin</artifactId>
  58. <configuration>
  59. <descriptorRefs>
  60. <!--给jar包起的别名-->
  61. <descriptorRef>jar-with-dependencies</descriptorRef>
  62. </descriptorRefs>
  63. <archive>
  64. <manifest>
  65. <addClasspath>true</addClasspath>
  66. <classpathPrefix>lib/</classpathPrefix>
  67. <!--添加项目中主类-->
  68. <mainClass>top.zhixinghe1.money.AggApplication</mainClass>
  69. </manifest>
  70. </archive>
  71. </configuration>
  72. <executions>
  73. <execution>
  74. <id>make-assembly</id>
  75. <phase>package</phase>
  76. <goals>
  77. <goal>single</goal>
  78. </goals>
  79. </execution>
  80. </executions>
  81. </plugin>
  82. </plugins>
  83. </build>
  84. </project>