pom.xml 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  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>com.lagou</groupId>
  7. <artifactId>lagou_edu_home_parent</artifactId>
  8. <packaging>pom</packaging>
  9. <version>1.0-SNAPSHOT</version>
  10. <modules>
  11. <module>ssm-utils</module>
  12. <module>ssm-domain</module>
  13. <module>ssm-service</module>
  14. <module>ssm-dao</module>
  15. <module>ssm-web</module>
  16. </modules>
  17. <properties>
  18. <spring.version>5.1.5.RELEASE</spring.version>
  19. <springmvc.version>5.1.5.RELEASE</springmvc.version>
  20. <mybatis.version>3.5.1</mybatis.version>
  21. </properties>
  22. <!-- 锁定jar版本-->
  23. <dependencyManagement>
  24. <dependencies>
  25. <!-- mybatis-->
  26. <dependency>
  27. <groupId>org.mybatis</groupId>
  28. <artifactId>mybatis</artifactId>
  29. <version>${mybatis.version}</version>
  30. </dependency>
  31. <!-- springMVC-->
  32. <dependency>
  33. <groupId>org.springframework</groupId>
  34. <artifactId>spring-webmvc</artifactId>
  35. <version>${springmvc.version}</version>
  36. </dependency>
  37. <!-- spring-->
  38. <dependency>
  39. <groupId>org.springframework</groupId>
  40. <artifactId>spring-context</artifactId>
  41. <version>${spring.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework</groupId>
  45. <artifactId>spring-core</artifactId>
  46. <version>${spring.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework</groupId>
  50. <artifactId>spring-aop</artifactId>
  51. <version>${spring.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework</groupId>
  55. <artifactId>spring-web</artifactId>
  56. <version>${spring.version}</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework</groupId>
  60. <artifactId>spring-expression</artifactId>
  61. <version>${spring.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework</groupId>
  65. <artifactId>spring-beans</artifactId>
  66. <version>${spring.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework</groupId>
  70. <artifactId>spring-aspects</artifactId>
  71. <version>${spring.version}</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework</groupId>
  75. <artifactId>spring-context-support</artifactId>
  76. <version>${spring.version}</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework</groupId>
  80. <artifactId>spring-test</artifactId>
  81. <version>${spring.version}</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework</groupId>
  85. <artifactId>spring-jdbc</artifactId>
  86. <version>${spring.version}</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.springframework</groupId>
  90. <artifactId>spring-tx</artifactId>
  91. <version>${spring.version}</version>
  92. </dependency>
  93. </dependencies>
  94. </dependencyManagement>
  95. <dependencies>
  96. <!-- mybatis-->
  97. <dependency>
  98. <groupId>mysql</groupId>
  99. <artifactId>mysql-connector-java</artifactId>
  100. <version>5.1.47</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.alibaba</groupId>
  104. <artifactId>druid</artifactId>
  105. <version>1.1.15</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.mybatis</groupId>
  109. <artifactId>mybatis</artifactId>
  110. </dependency>
  111. <dependency>
  112. <groupId>junit</groupId>
  113. <artifactId>junit</artifactId>
  114. <version>4.12</version>
  115. <scope>test</scope>
  116. </dependency>
  117. <!-- spring-->
  118. <dependency>
  119. <groupId>org.springframework</groupId>
  120. <artifactId>spring-context</artifactId>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.aspectj</groupId>
  124. <artifactId>aspectjweaver</artifactId>
  125. <version>1.8.13</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.springframework</groupId>
  129. <artifactId>spring-jdbc</artifactId>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.springframework</groupId>
  133. <artifactId>spring-tx</artifactId>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.springframework</groupId>
  137. <artifactId>spring-test</artifactId>
  138. </dependency>
  139. <!-- mybatis整合spring-->
  140. <dependency>
  141. <groupId>org.mybatis</groupId>
  142. <artifactId>mybatis-spring</artifactId>
  143. <version>1.3.1</version>
  144. </dependency>
  145. <!-- springmvc-->
  146. <dependency>
  147. <groupId>org.springframework</groupId>
  148. <artifactId>spring-webmvc</artifactId>
  149. </dependency>
  150. <dependency>
  151. <groupId>javax.servlet</groupId>
  152. <artifactId>javax.servlet-api</artifactId>
  153. <version>3.1.0</version>
  154. <scope>provided</scope>
  155. </dependency>
  156. <dependency>
  157. <groupId>javax.servlet.jsp</groupId>
  158. <artifactId>jsp-api</artifactId>
  159. <version>2.2</version>
  160. <scope>provided</scope>
  161. </dependency>
  162. <dependency>
  163. <groupId>jstl</groupId>
  164. <artifactId>jstl</artifactId>
  165. <version>1.2</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>com.fasterxml.jackson.core</groupId>
  169. <artifactId>jackson-databind</artifactId>
  170. <version>2.9.8</version>
  171. </dependency>
  172. <dependency>
  173. <groupId>com.fasterxml.jackson.core</groupId>
  174. <artifactId>jackson-core</artifactId>
  175. <version>2.9.8</version>
  176. </dependency>
  177. <dependency>
  178. <groupId>com.fasterxml.jackson.core</groupId>
  179. <artifactId>jackson-annotations</artifactId>
  180. <version>2.9.0</version>
  181. </dependency>
  182. <dependency>
  183. <groupId>com.github.pagehelper</groupId>
  184. <artifactId>pagehelper</artifactId>
  185. <version>4.1.6</version>
  186. </dependency>
  187. <!-- Beanutils-->
  188. <dependency>
  189. <groupId>commons-beanutils</groupId>
  190. <artifactId>commons-beanutils</artifactId>
  191. <version>1.8.3</version>
  192. </dependency>
  193. <dependency>
  194. <groupId>commons-fileupload</groupId>
  195. <artifactId>commons-fileupload</artifactId>
  196. <version>1.3.1</version>
  197. </dependency>
  198. <!-- 跨域-->
  199. <dependency>
  200. <groupId>com.thetransactioncompany</groupId>
  201. <artifactId>cors-filter</artifactId>
  202. <version>2.5</version>
  203. </dependency>
  204. <dependency>
  205. <groupId>org.slf4j</groupId>
  206. <artifactId>slf4j-log4j12</artifactId>
  207. <version>1.7.7</version>
  208. </dependency>
  209. <dependency>
  210. <groupId>log4j</groupId>
  211. <artifactId>log4j</artifactId>
  212. <version>1.2.17</version>
  213. </dependency>
  214. <dependency>
  215. <groupId>org.apache.commons</groupId>
  216. <artifactId>commons-lang3</artifactId>
  217. <version>3.3.2</version>
  218. </dependency>
  219. <dependency>
  220. <groupId>commons-codec</groupId>
  221. <artifactId>commons-codec</artifactId>
  222. <version>1.3</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. <version>3.1</version>
  231. <configuration>
  232. <source>1.8</source>
  233. <target>1.8</target>
  234. <encoding>UTF-8</encoding>
  235. </configuration>
  236. </plugin>
  237. </plugins>
  238. </build>
  239. </project>