pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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.3.0.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.hssx</groupId>
  12. <artifactId>user</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>user</name>
  15. <description>common user project</description>
  16. <properties>
  17. <java.version>1.8</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.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-test</artifactId>
  27. <scope>test</scope>
  28. <exclusions>
  29. <exclusion>
  30. <groupId>org.junit.vintage</groupId>
  31. <artifactId>junit-vintage-engine</artifactId>
  32. </exclusion>
  33. </exclusions>
  34. </dependency>
  35. <dependency>
  36. <groupId>mysql</groupId>
  37. <artifactId>mysql-connector-java</artifactId>
  38. <scope>runtime</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.baomidou</groupId>
  42. <artifactId>mybatis-plus-boot-starter</artifactId>
  43. <version>3.1.2</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.baomidou</groupId>
  47. <artifactId>mybatis-plus-generator</artifactId>
  48. <version>3.1.2</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.projectlombok</groupId>
  52. <artifactId>lombok</artifactId>
  53. <optional>true</optional>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.alibaba</groupId>
  57. <artifactId>fastjson</artifactId>
  58. <version>1.2.7</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.freemarker</groupId>
  62. <artifactId>freemarker</artifactId>
  63. <version>2.3.23</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.velocity</groupId>
  67. <artifactId>velocity-engine-core</artifactId>
  68. <version>2.0</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.apache.poi</groupId>
  72. <artifactId>poi</artifactId>
  73. <version>3.17</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.poi</groupId>
  77. <artifactId>poi-ooxml</artifactId>
  78. <version>3.17</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.apache.httpcomponents</groupId>
  82. <artifactId>httpclient</artifactId>
  83. <version>4.5.1</version>
  84. </dependency>
  85. <!--swagger图形化接口-->
  86. <dependency>
  87. <groupId>io.springfox</groupId>
  88. <artifactId>springfox-swagger2</artifactId>
  89. <version>2.9.2</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>io.springfox</groupId>
  93. <artifactId>springfox-swagger-ui</artifactId>
  94. <version>2.9.2</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.github.xiaoymin</groupId>
  98. <artifactId>swagger-bootstrap-ui</artifactId>
  99. <version>1.8.7</version>
  100. </dependency>
  101. </dependencies>
  102. <build>
  103. <plugins>
  104. <plugin>
  105. <groupId>org.springframework.boot</groupId>
  106. <artifactId>spring-boot-maven-plugin</artifactId>
  107. </plugin>
  108. </plugins>
  109. </build>
  110. <!--配置阿里云仓库-->
  111. <repositories>
  112. <repository>
  113. <id>public</id>
  114. <name>aliyun nexus</name>
  115. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  116. <releases>
  117. <enabled>true</enabled>
  118. </releases>
  119. <snapshots>
  120. <enabled>false</enabled>
  121. </snapshots>
  122. </repository>
  123. </repositories>
  124. <pluginRepositories>
  125. <pluginRepository>
  126. <id>public</id>
  127. <name>aliyun nexus</name>
  128. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  129. <releases>
  130. <enabled>true</enabled>
  131. </releases>
  132. <snapshots>
  133. <enabled>false</enabled>
  134. </snapshots>
  135. </pluginRepository>
  136. </pluginRepositories>
  137. </project>