pom.xml 9.5 KB

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