pom.xml 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <packaging>pom</packaging>
  6. <modules>
  7. <module>house-biz</module>
  8. <module>house-common</module>
  9. <module>house-web</module>
  10. <module>SpringbootAdmin</module>
  11. <module>house-auth</module>
  12. <module>house-im</module>
  13. </modules>
  14. <parent>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-parent</artifactId>
  17. <version>2.2.5.RELEASE</version>
  18. <relativePath/> <!-- lookup parent from repository -->
  19. </parent>
  20. <groupId>com.ljq.house</groupId>
  21. <artifactId>house-parent</artifactId>
  22. <version>0.0.1-SNAPSHOT</version>
  23. <name>house</name>
  24. <description>四维VR看房</description>
  25. <properties>
  26. <java.version>1.8</java.version>
  27. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  28. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  29. <druid.version>1.0.28</druid.version>
  30. <maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
  31. <pagehelper.version>1.2.5</pagehelper.version>
  32. <shiro.version>1.2.4</shiro.version>
  33. </properties>
  34. <dependencies>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-test</artifactId>
  38. <scope>test</scope>
  39. <exclusions>
  40. <exclusion>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter</artifactId>
  43. </exclusion>
  44. <exclusion>
  45. <artifactId>slf4j-api</artifactId>
  46. <groupId>org.slf4j</groupId>
  47. </exclusion>
  48. </exclusions>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter</artifactId>
  53. <exclusions>
  54. <exclusion>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-logging</artifactId>
  57. </exclusion>
  58. <exclusion>
  59. <groupId>ch.qos.logback</groupId>
  60. <artifactId>logback-classic</artifactId>
  61. </exclusion>
  62. <exclusion>
  63. <groupId>ch.qos.logback</groupId>
  64. <artifactId>logback-core</artifactId>
  65. </exclusion>
  66. </exclusions>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-web</artifactId>
  71. <!-- <scope>compile</scope>-->
  72. <exclusions>
  73. <exclusion>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-starter</artifactId>
  76. </exclusion>
  77. <exclusion>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-logging</artifactId>
  80. </exclusion>
  81. <exclusion>
  82. <groupId>ch.qos.logback</groupId>
  83. <artifactId>logback-classic</artifactId>
  84. </exclusion>
  85. <exclusion>
  86. <groupId>ch.qos.logback</groupId>
  87. <artifactId>logback-core</artifactId>
  88. </exclusion>
  89. <exclusion>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-starter-tomcat</artifactId>
  92. </exclusion>
  93. <exclusion>
  94. <groupId>org.springframework.boot</groupId>
  95. <artifactId>spring-boot-starter</artifactId>
  96. </exclusion>
  97. </exclusions>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.springframework.boot</groupId>
  101. <artifactId>spring-boot-starter-log4j2</artifactId>
  102. </dependency>
  103. <!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
  104. <dependency>
  105. <groupId>javax.servlet</groupId>
  106. <artifactId>javax.servlet-api</artifactId>
  107. <version>4.0.0</version>
  108. <scope>provided</scope>
  109. </dependency>
  110. <!--devtools热部署-->
  111. <dependency>
  112. <groupId>org.springframework.boot</groupId>
  113. <artifactId>spring-boot-devtools</artifactId>
  114. <optional>true</optional>
  115. <scope>true</scope>
  116. </dependency>
  117. <!--内置的tomcat容器-->
  118. <dependency>
  119. <groupId>org.springframework.boot</groupId>
  120. <artifactId>spring-boot-starter-tomcat</artifactId>
  121. <scope>provided</scope>
  122. <exclusions>
  123. <exclusion>
  124. <groupId>org.apache.tomcat.embed</groupId>
  125. <artifactId>tomcat-embed-websocket</artifactId>
  126. </exclusion>
  127. </exclusions>
  128. </dependency>
  129. <!--导入导出数据-->
  130. <dependency>
  131. <groupId>org.apache.poi</groupId>
  132. <artifactId>poi</artifactId>
  133. <version>3.17</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.apache.poi</groupId>
  137. <artifactId>poi-ooxml</artifactId>
  138. <version>3.17</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>mysql</groupId>
  142. <artifactId>mysql-connector-java</artifactId>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.mybatis.spring.boot</groupId>
  146. <artifactId>mybatis-spring-boot-starter</artifactId>
  147. <version>2.1.1</version>
  148. <exclusions>
  149. <exclusion>
  150. <groupId>org.springframework.boot</groupId>
  151. <artifactId>spring-boot-starter</artifactId>
  152. </exclusion>
  153. </exclusions>
  154. </dependency>
  155. <dependency>
  156. <groupId>com.baomidou</groupId>
  157. <artifactId>mybatis-plus-boot-starter</artifactId>
  158. <version>3.3.1.tmp</version>
  159. <exclusions>
  160. <exclusion>
  161. <groupId>org.mybatis</groupId>
  162. <artifactId>mybatis</artifactId>
  163. </exclusion>
  164. <exclusion>
  165. <groupId>org.mybatis</groupId>
  166. <artifactId>mybatis-spring</artifactId>
  167. </exclusion>
  168. </exclusions>
  169. </dependency>
  170. <dependency>
  171. <groupId>com.baomidou</groupId>
  172. <artifactId>mybatis-plus-generator</artifactId>
  173. <version>3.3.1.tmp</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>org.apache.velocity</groupId>
  177. <artifactId>velocity-engine-core</artifactId>
  178. <version>2.1</version>
  179. </dependency>
  180. <dependency>
  181. <groupId>org.projectlombok</groupId>
  182. <artifactId>lombok</artifactId>
  183. </dependency>
  184. <!-- swagger-ui -->
  185. <dependency>
  186. <groupId>io.springfox</groupId>
  187. <artifactId>springfox-swagger2</artifactId>
  188. <version>2.8.0</version>
  189. </dependency>
  190. <dependency>
  191. <groupId>io.springfox</groupId>
  192. <artifactId>springfox-swagger-ui</artifactId>
  193. <version>2.8.0</version>
  194. </dependency>
  195. <dependency>
  196. <groupId>com.aliyun.oss</groupId>
  197. <artifactId>aliyun-sdk-oss</artifactId>
  198. <version>3.8.0</version>
  199. </dependency>
  200. </dependencies>
  201. <build>
  202. <plugins>
  203. <plugin>
  204. <groupId>org.apache.maven.plugins</groupId>
  205. <artifactId>maven-compiler-plugin</artifactId>
  206. <configuration>
  207. <source>${java.version}</source>
  208. <target>${java.version}</target>
  209. </configuration>
  210. </plugin>
  211. <plugin>
  212. <groupId>org.apache.maven.plugins</groupId>
  213. <artifactId>maven-surefire-plugin</artifactId>
  214. <version>${maven-surefire-plugin.version}</version>
  215. <configuration>
  216. <skipTests>true</skipTests> <!--默认关掉单元测试 -->
  217. </configuration>
  218. </plugin>
  219. </plugins>
  220. </build>
  221. </project>