pom.xml 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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.12.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.unissoft</groupId>
  12. <artifactId>smart-grp-front-back</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>smart-grp-front-back</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <skipTests>true</skipTests>
  18. <java.version>1.8</java.version>
  19. <mybatisPlus.version>3.4.1</mybatisPlus.version>
  20. <mybatis.version>2.1.4</mybatis.version>
  21. <spring-cloud.version>Hoxton.SR12</spring-cloud.version>
  22. <swagger.version>2.9.2</swagger.version>
  23. <swagger-boot.version>1.9.0.RELEASE</swagger-boot.version>
  24. <fastjson2.version>2.0.21</fastjson2.version>
  25. </properties>
  26. <dependencies>
  27. <dependency>
  28. <groupId>org.projectlombok</groupId>
  29. <artifactId>lombok</artifactId>
  30. <scope>provided</scope>
  31. </dependency>
  32. <!-- dataSource -->
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-jdbc</artifactId>
  36. </dependency>
  37. <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
  38. <dependency>
  39. <groupId>mysql</groupId>
  40. <artifactId>mysql-connector-java</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.mybatis.spring.boot</groupId>
  44. <artifactId>mybatis-spring-boot-starter</artifactId>
  45. <version>${mybatis.version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.baomidou</groupId>
  49. <artifactId>mybatis-plus-boot-starter</artifactId>
  50. <version>${mybatisPlus.version}</version>
  51. </dependency>
  52. <!-- @Min -->
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-validation</artifactId>
  56. </dependency>
  57. <!--swagger-->
  58. <dependency>
  59. <groupId>io.springfox</groupId>
  60. <artifactId>springfox-swagger2</artifactId>
  61. <version>${swagger.version}</version>
  62. </dependency>
  63. <!--excel操作 springboot-easypoi-->
  64. <dependency>
  65. <groupId>cn.afterturn</groupId>
  66. <artifactId>easypoi-spring-boot-starter</artifactId>
  67. <version>4.1.2</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>io.springfox</groupId>
  71. <artifactId>springfox-swagger-ui</artifactId>
  72. <version>${swagger.version}</version>
  73. </dependency>
  74. <!--add swagger2 by hasan-->
  75. <dependency>
  76. <groupId>com.spring4all</groupId>
  77. <artifactId>swagger-spring-boot-starter</artifactId>
  78. <version>${swagger-boot.version}</version>
  79. </dependency>
  80. <!-- https://mvnrepository.com/artifact/com.alibaba.fastjson2/fastjson2 -->
  81. <dependency>
  82. <groupId>com.alibaba.fastjson2</groupId>
  83. <artifactId>fastjson2</artifactId>
  84. <version>${fastjson2.version}</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.springframework.boot</groupId>
  88. <artifactId>spring-boot-starter-integration</artifactId>
  89. </dependency>
  90. <!-- webservice cxf -->
  91. <dependency>
  92. <groupId>org.apache.cxf</groupId>
  93. <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
  94. <version>3.5.5</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.springframework.boot</groupId>
  98. <artifactId>spring-boot-starter-web</artifactId>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.springframework.boot</groupId>
  102. <artifactId>spring-boot-starter-test</artifactId>
  103. <scope>test</scope>
  104. </dependency>
  105. </dependencies>
  106. <!-- springCloud version -->
  107. <dependencyManagement>
  108. <dependencies>
  109. <dependency>
  110. <groupId>org.springframework.cloud</groupId>
  111. <artifactId>spring-cloud-dependencies</artifactId>
  112. <version>${spring-cloud.version}</version>
  113. <type>pom</type>
  114. <scope>import</scope>
  115. </dependency>
  116. </dependencies>
  117. </dependencyManagement>
  118. <build>
  119. <finalName>${project.artifactId}</finalName>
  120. <plugins>
  121. <plugin>
  122. <groupId>org.springframework.boot</groupId>
  123. <artifactId>spring-boot-maven-plugin</artifactId>
  124. </plugin>
  125. </plugins>
  126. </build>
  127. <repositories>
  128. <repository>
  129. <id>spring-snapshots</id>
  130. <name>Spring Snapshots</name>
  131. <url>https://repo.spring.io/snapshot</url>
  132. <snapshots>
  133. <enabled>false</enabled>
  134. </snapshots>
  135. </repository>
  136. <repository>
  137. <id>spring-milestones</id>
  138. <name>Spring Milestones</name>
  139. <url>https://repo.spring.io/milestone</url>
  140. <snapshots>
  141. <enabled>false</enabled>
  142. </snapshots>
  143. </repository>
  144. </repositories>
  145. </project>