pom.xml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.7.16</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.nokia</groupId>
  12. <artifactId>finance-api</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>finance-api</name>
  15. <description>finance-api</description>
  16. <properties>
  17. <java.version>17</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.postgresql</groupId>
  26. <artifactId>postgresql</artifactId>
  27. <scope>runtime</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-configuration-processor</artifactId>
  32. <optional>true</optional>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.projectlombok</groupId>
  36. <artifactId>lombok</artifactId>
  37. <optional>true</optional>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-test</artifactId>
  42. <scope>test</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-validation</artifactId>
  47. </dependency>
  48. <!-- https://mvnrepository.com/artifact/com.github.xiaoymin/knife4j-openapi3-spring-boot-starter -->
  49. <dependency>
  50. <groupId>com.github.xiaoymin</groupId>
  51. <artifactId>knife4j-openapi3-spring-boot-starter</artifactId>
  52. <version>4.3.0</version>
  53. </dependency>
  54. <!-- https://mvnrepository.com/artifact/com.baomidou/mybatis-plus-boot-starter -->
  55. <dependency>
  56. <groupId>com.baomidou</groupId>
  57. <artifactId>mybatis-plus-boot-starter</artifactId>
  58. <version>3.5.4.1</version>
  59. </dependency>
  60. <!-- https://mvnrepository.com/artifact/cn.hutool/hutool-all -->
  61. <dependency>
  62. <groupId>cn.hutool</groupId>
  63. <artifactId>hutool-all</artifactId>
  64. <version>5.8.22</version>
  65. </dependency>
  66. <!-- https://mvnrepository.com/artifact/io.minio/minio -->
  67. <dependency>
  68. <groupId>io.minio</groupId>
  69. <artifactId>minio</artifactId>
  70. <version>8.5.6</version>
  71. </dependency>
  72. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi -->
  73. <dependency>
  74. <groupId>org.apache.poi</groupId>
  75. <artifactId>poi</artifactId>
  76. <version>5.2.5</version>
  77. </dependency>
  78. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
  79. <dependency>
  80. <groupId>org.apache.poi</groupId>
  81. <artifactId>poi-ooxml</artifactId>
  82. <version>5.2.5</version>
  83. </dependency>
  84. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-csv -->
  85. <dependency>
  86. <groupId>org.apache.commons</groupId>
  87. <artifactId>commons-csv</artifactId>
  88. <version>1.10.0</version>
  89. </dependency>
  90. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-exec -->
  91. <dependency>
  92. <groupId>org.apache.commons</groupId>
  93. <artifactId>commons-exec</artifactId>
  94. <version>1.3</version>
  95. </dependency>
  96. </dependencies>
  97. <dependencyManagement>
  98. <dependencies>
  99. <dependency>
  100. <groupId>org.apache.commons</groupId>
  101. <artifactId>commons-compress</artifactId>
  102. <version>1.25.0</version>
  103. <scope>compile</scope>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.checkerframework</groupId>
  107. <artifactId>checker-qual</artifactId>
  108. <version>3.33.0</version>
  109. </dependency>
  110. </dependencies>
  111. </dependencyManagement>
  112. <build>
  113. <finalName>finance-api</finalName>
  114. <plugins>
  115. <plugin>
  116. <groupId>org.springframework.boot</groupId>
  117. <artifactId>spring-boot-maven-plugin</artifactId>
  118. <configuration>
  119. <excludes>
  120. <exclude>
  121. <groupId>org.projectlombok</groupId>
  122. <artifactId>lombok</artifactId>
  123. </exclude>
  124. </excludes>
  125. </configuration>
  126. </plugin>
  127. </plugins>
  128. </build>
  129. </project>