pom.xml 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  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. <groupId>com.pine.springboot</groupId>
  6. <artifactId>pine-parent</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <packaging>pom</packaging>
  9. <name>pine-parent</name>
  10. <!-- FIXME change it to the project's website -->
  11. <url>http://www.example.com</url>
  12. <modules>
  13. <module>pine-admin</module>
  14. <module>pine-common</module>
  15. <module>pine-generator</module>
  16. </modules>
  17. <parent>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-parent</artifactId>
  20. <version>1.5.10.RELEASE</version>
  21. <relativePath/> <!-- lookup parent from repository -->
  22. </parent>
  23. <properties>
  24. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  25. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  26. <java.version>1.8</java.version>
  27. <commons.lang.version>2.6</commons.lang.version>
  28. <commons.io.version>2.5</commons.io.version>
  29. <org.codehaus.jackson.version>1.9.3</org.codehaus.jackson.version>
  30. <com.aliyun.oss.version>3.1.0</com.aliyun.oss.version>
  31. <java.version>1.8</java.version>
  32. <druid.version>1.1.3</druid.version>
  33. </properties>
  34. <dependencyManagement>
  35. <dependencies>
  36. <dependency>
  37. <groupId>org.json</groupId>
  38. <artifactId>json</artifactId>
  39. <version>20180130</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.aliyun.oss</groupId>
  43. <artifactId>aliyun-sdk-oss</artifactId>
  44. <version>${com.aliyun.oss.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-parent</artifactId>
  49. <version>1.5.10.RELEASE</version>
  50. <type>pom</type>
  51. <scope>import</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>io.springfox</groupId>
  55. <artifactId>springfox-swagger2</artifactId>
  56. <version>2.9.1</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>io.springfox</groupId>
  60. <artifactId>springfox-swagger-ui</artifactId>
  61. <version>2.9.1</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.mybatis.spring.boot</groupId>
  65. <artifactId>mybatis-spring-boot-starter</artifactId>
  66. <version>1.1.1</version><!-- 版本号必须需要 -->
  67. </dependency>
  68. <dependency>
  69. <groupId>mysql</groupId>
  70. <artifactId>mysql-connector-java</artifactId>
  71. <version>5.1.38</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.alibaba</groupId>
  75. <artifactId>druid-spring-boot-starter</artifactId>
  76. <version>${druid.version}</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.apache.poi</groupId>
  80. <artifactId>poi</artifactId>
  81. <version>3.17</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.apache.poi</groupId>
  85. <artifactId>poi-ooxml-schemas</artifactId>
  86. <version>3.17</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.apache.poi</groupId>
  90. <artifactId>poi-ooxml</artifactId>
  91. <version>3.17</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.aliyun.oss</groupId>
  95. <artifactId>aliyun-sdk-oss-private</artifactId>
  96. <version>2.3.1</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.codehaus.jackson</groupId>
  100. <artifactId>jackson-core-asl</artifactId>
  101. <version>${org.codehaus.jackson.version}</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>commons-io</groupId>
  105. <artifactId>commons-io</artifactId>
  106. <version>${commons.io.version}</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>commons-lang</groupId>
  110. <artifactId>commons-lang</artifactId>
  111. <version>${commons.lang.version}</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>javax.servlet</groupId>
  115. <artifactId>javax.servlet-api</artifactId>
  116. <version>3.1.0</version>
  117. <scope>provided</scope>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.solidfire.code.gson</groupId>
  121. <artifactId>gson</artifactId>
  122. <version>2.6.2</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>postgresql</groupId>
  126. <artifactId>postgresql</artifactId>
  127. <version>9.1-901-1.jdbc4</version>
  128. </dependency>
  129. <!-- POIExcel-->
  130. <dependency>
  131. <groupId>org.apache.poi</groupId>
  132. <artifactId>poi</artifactId>
  133. <version>3.15</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.apache.poi</groupId>
  137. <artifactId>poi-ooxml</artifactId>
  138. <version>3.15</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.apache.poi</groupId>
  142. <artifactId>poi-scratchpad</artifactId>
  143. <version>3.16</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>javax.servlet</groupId>
  147. <artifactId>javax.servlet-api</artifactId>
  148. <!--<scope>provided</scope>-->
  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>joda-time</groupId>
  158. <artifactId>joda-time</artifactId>
  159. <version>2.9.9</version>
  160. </dependency>
  161. </dependencies>
  162. </dependencyManagement>
  163. <build>
  164. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  165. <plugins>
  166. <plugin>
  167. <groupId>org.apache.maven.plugins</groupId>
  168. <artifactId>maven-compiler-plugin</artifactId>
  169. <version>3.1</version>
  170. <configuration>
  171. <source>1.8</source>
  172. <target>1.8</target>
  173. <encoding>UTF-8</encoding>
  174. </configuration>
  175. </plugin>
  176. <plugin>
  177. <groupId>org.springframework.boot</groupId>
  178. <artifactId>spring-boot-maven-plugin</artifactId>
  179. <configuration>
  180. <fork>true</fork>
  181. </configuration>
  182. </plugin>
  183. </plugins>
  184. </pluginManagement>
  185. </build>
  186. </project>