pom.xml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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>org.example</groupId>
  7. <artifactId>person-insert</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <parent>
  10. <groupId>org.springframework.boot</groupId>
  11. <artifactId>spring-boot-starter-parent</artifactId>
  12. <version>2.1.0.RELEASE</version>
  13. </parent>
  14. <properties>
  15. <maven.compiler.source>8</maven.compiler.source>
  16. <maven.compiler.target>8</maven.compiler.target>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. </properties>
  19. <repositories>
  20. <repository>
  21. <id>com.e-iceblue</id>
  22. <name>e-iceblue</name>
  23. <url>https://repo.e-iceblue.com/nexus/content/groups/public/</url>
  24. </repository>
  25. </repositories>
  26. <dependencies>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-data-redis</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.alibaba</groupId>
  33. <artifactId>fastjson</artifactId>
  34. <version>1.2.83</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.projectlombok</groupId>
  38. <artifactId>lombok</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>e-iceblue</groupId>
  42. <artifactId>spire.pdf.free</artifactId>
  43. <version>5.1.0</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.alibaba</groupId>
  47. <artifactId>easyexcel</artifactId>
  48. <version>2.1.6</version>
  49. </dependency>
  50. <!-- <dependency>-->
  51. <!-- <groupId>gui.ava</groupId>-->
  52. <!-- <artifactId>html2image</artifactId>-->
  53. <!-- <version>0.9</version>-->
  54. <!-- </dependency>-->
  55. <dependency>
  56. <groupId>cn.hutool</groupId>
  57. <artifactId>hutool-all</artifactId>
  58. <version>5.0.6</version>
  59. </dependency>
  60. <!-- <dependency>-->
  61. <!-- <groupId>gui.ava</groupId>-->
  62. <!-- <artifactId>html2image</artifactId>-->
  63. <!-- <version>2.0.1</version>-->
  64. <!-- </dependency>-->
  65. <dependency>
  66. <groupId>com.baomidou</groupId>
  67. <artifactId>mybatis-plus</artifactId>
  68. <version>2.2.0</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.mybatis.spring.boot</groupId>
  72. <artifactId>mybatis-spring-boot-starter</artifactId>
  73. <version>1.3.2</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-test</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>mysql</groupId>
  81. <artifactId>mysql-connector-java</artifactId>
  82. </dependency>
  83. <!-- <dependency>-->
  84. <!-- <groupId>org.springframework.boot</groupId>-->
  85. <!-- <artifactId>spring-boot-starter-jdbc</artifactId>-->
  86. <!-- <version>2.1.7.RELEASE</version>-->
  87. <!-- </dependency>-->
  88. <dependency>
  89. <groupId>org.springframework.boot</groupId>
  90. <artifactId>spring-boot-starter-web</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.springframework.boot</groupId>
  94. <artifactId>spring-boot-starter-aop</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.projectlombok</groupId>
  98. <artifactId>lombok</artifactId>
  99. <version>1.18.24</version>
  100. </dependency>
  101. <!-- <dependency>-->
  102. <!-- <groupId>org.apache.poi</groupId>-->
  103. <!-- <artifactId>poi</artifactId>-->
  104. <!-- <version>3.9</version>-->
  105. <!-- </dependency>-->
  106. <!-- &lt;!&ndash;xlsx&ndash;&gt;-->
  107. <!-- <dependency>-->
  108. <!-- <groupId>org.apache.poi</groupId>-->
  109. <!-- <artifactId>poi-ooxml</artifactId>-->
  110. <!-- <version>3.9</version>-->
  111. <!-- </dependency>-->
  112. </dependencies>
  113. <build>
  114. <finalName>person_insert</finalName>
  115. <plugins>
  116. <plugin>
  117. <groupId>org.apache.maven.plugins</groupId>
  118. <artifactId>maven-compiler-plugin</artifactId>
  119. <version>3.8.1</version>
  120. </plugin>
  121. <plugin>
  122. <groupId>org.springframework.boot</groupId>
  123. <artifactId>spring-boot-maven-plugin</artifactId>
  124. <version>2.1.0.RELEASE</version> <!-- 使用你的 Spring Boot 版本 -->
  125. <configuration>
  126. <mainClass>com.person.PersonApplication</mainClass>
  127. </configuration>
  128. </plugin>
  129. </plugins>
  130. </build>
  131. </project>