pom.xml 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.nokia</groupId>
  6. <artifactId>finance-tasks</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>finance-tasks</name>
  9. <description>finance-tasks</description>
  10. <properties>
  11. <java.version>17</java.version>
  12. <maven.compiler.source>${java.version}</maven.compiler.source>
  13. <maven.compiler.target>${java.version}</maven.compiler.target>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <project.reporting.outputEncoding>${project.build.sourceEncoding}</project.reporting.outputEncoding>
  16. <spring-boot.version>2.7.13</spring-boot.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-web</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-configuration-processor</artifactId>
  26. <optional>true</optional>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.projectlombok</groupId>
  30. <artifactId>lombok</artifactId>
  31. <optional>true</optional>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-test</artifactId>
  36. <scope>test</scope>
  37. </dependency>
  38. <!-- https://mvnrepository.com/artifact/cn.hutool/hutool-all -->
  39. <dependency>
  40. <groupId>cn.hutool</groupId>
  41. <artifactId>hutool-all</artifactId>
  42. <version>5.8.23</version>
  43. </dependency>
  44. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-csv -->
  45. <dependency>
  46. <groupId>org.apache.commons</groupId>
  47. <artifactId>commons-csv</artifactId>
  48. <version>1.10.0</version>
  49. </dependency>
  50. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-exec -->
  51. <dependency>
  52. <groupId>org.apache.commons</groupId>
  53. <artifactId>commons-exec</artifactId>
  54. <version>1.4.0</version>
  55. </dependency>
  56. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi -->
  57. <dependency>
  58. <groupId>org.apache.poi</groupId>
  59. <artifactId>poi</artifactId>
  60. <version>5.2.5</version>
  61. </dependency>
  62. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
  63. <dependency>
  64. <groupId>org.apache.poi</groupId>
  65. <artifactId>poi-ooxml</artifactId>
  66. <version>5.2.5</version>
  67. </dependency>
  68. <!-- https://mvnrepository.com/artifact/com.baomidou/mybatis-plus-boot-starter -->
  69. <dependency>
  70. <groupId>com.baomidou</groupId>
  71. <artifactId>mybatis-plus-boot-starter</artifactId>
  72. <version>3.5.4.1</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.postgresql</groupId>
  76. <artifactId>postgresql</artifactId>
  77. <scope>runtime</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-starter-validation</artifactId>
  82. </dependency>
  83. <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-freemarker -->
  84. <dependency>
  85. <groupId>org.springframework.boot</groupId>
  86. <artifactId>spring-boot-starter-freemarker</artifactId>
  87. <version>3.2.3</version>
  88. </dependency>
  89. <!-- &lt;!&ndash; https://mvnrepository.com/artifact/com.belerweb/pinyin4j &ndash;&gt;-->
  90. <!-- <dependency>-->
  91. <!-- <groupId>com.belerweb</groupId>-->
  92. <!-- <artifactId>pinyin4j</artifactId>-->
  93. <!-- <version>2.5.1</version>-->
  94. <!-- </dependency>-->
  95. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  96. <dependency>
  97. <groupId>org.apache.commons</groupId>
  98. <artifactId>commons-lang3</artifactId>
  99. <version>3.14.0</version>
  100. </dependency>
  101. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-compress -->
  102. <dependency>
  103. <groupId>org.apache.commons</groupId>
  104. <artifactId>commons-compress</artifactId>
  105. <version>1.26.1</version>
  106. </dependency>
  107. <!-- https://mvnrepository.com/artifact/io.minio/minio -->
  108. <dependency>
  109. <groupId>io.minio</groupId>
  110. <artifactId>minio</artifactId>
  111. <version>8.5.10</version>
  112. </dependency>
  113. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-text -->
  114. <dependency>
  115. <groupId>org.apache.commons</groupId>
  116. <artifactId>commons-text</artifactId>
  117. <version>1.12.0</version>
  118. </dependency>
  119. <!-- https://mvnrepository.com/artifact/com.baomidou/mybatis-plus-generator -->
  120. <dependency>
  121. <groupId>com.baomidou</groupId>
  122. <artifactId>mybatis-plus-generator</artifactId>
  123. <version>3.5.6</version>
  124. <scope>test</scope>
  125. </dependency>
  126. </dependencies>
  127. <dependencyManagement>
  128. <dependencies>
  129. <dependency>
  130. <groupId>org.springframework.boot</groupId>
  131. <artifactId>spring-boot-dependencies</artifactId>
  132. <version>${spring-boot.version}</version>
  133. <type>pom</type>
  134. <scope>import</scope>
  135. </dependency>
  136. </dependencies>
  137. </dependencyManagement>
  138. <build>
  139. <finalName>finance-tasks</finalName>
  140. <plugins>
  141. <plugin>
  142. <groupId>org.springframework.boot</groupId>
  143. <artifactId>spring-boot-maven-plugin</artifactId>
  144. <executions>
  145. <execution>
  146. <id>repackage</id>
  147. <goals>
  148. <goal>repackage</goal>
  149. </goals>
  150. </execution>
  151. </executions>
  152. <configuration>
  153. <excludes>
  154. <exclude>
  155. <groupId>org.projectlombok</groupId>
  156. <artifactId>lombok</artifactId>
  157. </exclude>
  158. </excludes>
  159. </configuration>
  160. </plugin>
  161. </plugins>
  162. </build>
  163. </project>