pom.xml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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.3</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.google.code.gson/gson -->
  69. <dependency>
  70. <groupId>com.google.code.gson</groupId>
  71. <artifactId>gson</artifactId>
  72. <version>2.10.1</version>
  73. </dependency>
  74. <!-- https://mvnrepository.com/artifact/com.baomidou/mybatis-plus-boot-starter -->
  75. <dependency>
  76. <groupId>com.baomidou</groupId>
  77. <artifactId>mybatis-plus-boot-starter</artifactId>
  78. <version>3.5.4.1</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.postgresql</groupId>
  82. <artifactId>postgresql</artifactId>
  83. <scope>runtime</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-starter-validation</artifactId>
  88. </dependency>
  89. </dependencies>
  90. <dependencyManagement>
  91. <dependencies>
  92. <dependency>
  93. <groupId>org.springframework.boot</groupId>
  94. <artifactId>spring-boot-dependencies</artifactId>
  95. <version>${spring-boot.version}</version>
  96. <type>pom</type>
  97. <scope>import</scope>
  98. </dependency>
  99. </dependencies>
  100. </dependencyManagement>
  101. <build>
  102. <finalName>finance-tasks</finalName>
  103. <plugins>
  104. <plugin>
  105. <groupId>org.springframework.boot</groupId>
  106. <artifactId>spring-boot-maven-plugin</artifactId>
  107. <executions>
  108. <execution>
  109. <id>repackage</id>
  110. <goals>
  111. <goal>repackage</goal>
  112. </goals>
  113. </execution>
  114. </executions>
  115. <configuration>
  116. <excludes>
  117. <exclude>
  118. <groupId>org.projectlombok</groupId>
  119. <artifactId>lombok</artifactId>
  120. </exclude>
  121. </excludes>
  122. </configuration>
  123. </plugin>
  124. </plugins>
  125. </build>
  126. </project>