framework-gis-1.0.0.0.pom 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.genetic</groupId>
  5. <artifactId>framework-gis</artifactId>
  6. <version>1.0.0.0</version>
  7. <packaging>pom</packaging>
  8. <!-- <packaging>war</packaging>-->
  9. <name>framework-gis</name>
  10. <description>专业版</description>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>2.1.1.RELEASE</version>
  15. </parent>
  16. <!-- 解决war packing错误问题 ****************************-->
  17. <modules>
  18. <module>common</module>
  19. <module>dynamic-datasource</module>
  20. <module>admin</module>
  21. <module>generator</module>
  22. </modules>
  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. <servlet.version>3.1.0</servlet.version>
  28. <junit.version>4.12</junit.version>
  29. <jedis.version>2.9.0</jedis.version>
  30. <druid.version>1.1.10</druid.version>
  31. <mybatisplus.version>3.3.2</mybatisplus.version>
  32. <!-- <mysql.version>5.1.38</mysql.version>-->
  33. <mysql.version>8.0.12</mysql.version>
  34. <sqlserver.version>4.0</sqlserver.version>
  35. <oracle.version>11.2.0.3</oracle.version>
  36. <commons.lang.version>3.7</commons.lang.version>
  37. <commons.fileupload.version>1.3.1</commons.fileupload.version>
  38. <commons.io.version>2.5</commons.io.version>
  39. <commons.codec.version>1.10</commons.codec.version>
  40. <guava.version>20.0</guava.version>
  41. <fastjson.version>1.2.45</fastjson.version>
  42. <joda.time.version>2.9.9</joda.time.version>
  43. <hutool.version>4.1.8</hutool.version>
  44. <jsoup.version>1.11.3</jsoup.version>
  45. <swagger.version>2.7.0</swagger.version>
  46. <lombok.version>1.18.4</lombok.version>
  47. <jasypt.version>2.0.0</jasypt.version>
  48. <docker.plugin.version>1.1.1</docker.plugin.version>
  49. <rxjava2.version>2.2.7</rxjava2.version>
  50. <retrofit2.version>2.5.0</retrofit2.version>
  51. <glassfish.version>3.0.1-b08</glassfish.version>
  52. <jsp-api.version>2.1</jsp-api.version>
  53. </properties>
  54. <dependencies>
  55. <dependency>
  56. <groupId>junit</groupId>
  57. <artifactId>junit</artifactId>
  58. <version>${junit.version}</version>
  59. <scope>test</scope>
  60. </dependency>
  61. <!-- <dependency>-->
  62. <!-- <groupId>javax.servlet</groupId>-->
  63. <!-- <artifactId>javax.servlet-api</artifactId>-->
  64. <!-- <version>${servlet.version}</version>-->
  65. <!-- <scope>provided</scope>-->
  66. <!-- </dependency>-->
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-starter-test</artifactId>
  70. <scope>test</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-starter-web</artifactId>
  75. <!-- 移除自带tomcat ******************************-->
  76. <!-- <exclusions>-->
  77. <!-- <exclusion>-->
  78. <!-- <groupId>org.springframework.boot</groupId>-->
  79. <!-- <artifactId>spring-boot-starter-tomcat</artifactId>-->
  80. <!-- </exclusion>-->
  81. <!-- </exclusions>-->
  82. </dependency>
  83. <!-- 添加对外置tomcat支持 *******************************-->
  84. <!-- <dependency>-->
  85. <!-- <groupId>org.springframework.boot</groupId>-->
  86. <!-- <artifactId>spring-boot-starter-tomcat</artifactId>-->
  87. <!-- <scope>provided</scope>-->
  88. <!-- </dependency>-->
  89. <dependency>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-starter-aop</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.springframework</groupId>
  95. <artifactId>spring-context-support</artifactId>
  96. </dependency>
  97. <!-- <dependency>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  100. </dependency>-->
  101. <dependency>
  102. <groupId>org.springframework.boot</groupId>
  103. <artifactId>spring-boot-starter-data-redis</artifactId>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.springframework.boot</groupId>
  107. <artifactId>spring-boot-configuration-processor</artifactId>
  108. <optional>true</optional>
  109. </dependency>
  110. <dependency>
  111. <groupId>redis.clients</groupId>
  112. <artifactId>jedis</artifactId>
  113. <version>${jedis.version}</version>
  114. </dependency>
  115. <!-- mysql驱动 -->
  116. <!-- <dependency> -->
  117. <!-- <groupId>mysql</groupId> -->
  118. <!-- <artifactId>mysql-connector-java</artifactId> -->
  119. <!-- <version>${mysql.version}</version> -->
  120. <!-- </dependency> -->
  121. <!-- <dependency>-->
  122. <!-- <groupId>mysql</groupId>-->
  123. <!-- <artifactId>mysql-connector-java</artifactId>-->
  124. <!-- <version>${mysql.version}</version>-->
  125. <!-- </dependency>-->
  126. <dependency>
  127. <groupId>mysql</groupId>
  128. <artifactId>mysql-connector-java</artifactId>
  129. <version>8.0.21</version>
  130. </dependency>
  131. <!-- oracle驱动 -->
  132. <dependency>
  133. <groupId>com.oracle</groupId>
  134. <artifactId>ojdbc6</artifactId>
  135. <version>${oracle.version}</version>
  136. </dependency>
  137. <!-- sqlserver驱动 -->
  138. <dependency>
  139. <groupId>com.microsoft.sqlserver</groupId>
  140. <artifactId>sqljdbc4</artifactId>
  141. <version>${sqlserver.version}</version>
  142. </dependency>
  143. <!-- postgresql驱动 -->
  144. <dependency>
  145. <groupId>org.postgresql</groupId>
  146. <artifactId>postgresql</artifactId>
  147. </dependency>
  148. <dependency>
  149. <groupId>com.alibaba</groupId>
  150. <artifactId>druid-spring-boot-starter</artifactId>
  151. <version>${druid.version}</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>com.baomidou</groupId>
  155. <artifactId>mybatis-plus-boot-starter</artifactId>
  156. <!-- <version></version>-->
  157. <version>${mybatisplus.version}</version>
  158. <exclusions>
  159. <exclusion>
  160. <groupId>com.baomidou</groupId>
  161. <artifactId>mybatis-plus-generator</artifactId>
  162. </exclusion>
  163. </exclusions>
  164. </dependency>
  165. <dependency>
  166. <groupId>com.alibaba</groupId>
  167. <artifactId>fastjson</artifactId>
  168. <version>${fastjson.version}</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>org.apache.commons</groupId>
  172. <artifactId>commons-lang3</artifactId>
  173. <version>${commons.lang.version}</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>commons-fileupload</groupId>
  177. <artifactId>commons-fileupload</artifactId>
  178. <version>${commons.fileupload.version}</version>
  179. </dependency>
  180. <dependency>
  181. <groupId>commons-io</groupId>
  182. <artifactId>commons-io</artifactId>
  183. <version>${commons.io.version}</version>
  184. </dependency>
  185. <dependency>
  186. <groupId>commons-codec</groupId>
  187. <artifactId>commons-codec</artifactId>
  188. <version>${commons.codec.version}</version>
  189. </dependency>
  190. <dependency>
  191. <groupId>com.google.guava</groupId>
  192. <artifactId>guava</artifactId>
  193. <version>${guava.version}</version>
  194. </dependency>
  195. <dependency>
  196. <groupId>joda-time</groupId>
  197. <artifactId>joda-time</artifactId>
  198. <version>${joda.time.version}</version>
  199. </dependency>
  200. <dependency>
  201. <groupId>cn.hutool</groupId>
  202. <artifactId>hutool-all</artifactId>
  203. <version>${hutool.version}</version>
  204. </dependency>
  205. <dependency>
  206. <groupId>org.jsoup</groupId>
  207. <artifactId>jsoup</artifactId>
  208. <version>${jsoup.version}</version>
  209. </dependency>
  210. <dependency>
  211. <groupId>io.springfox</groupId>
  212. <artifactId>springfox-swagger2</artifactId>
  213. <version>${swagger.version}</version>
  214. </dependency>
  215. <dependency>
  216. <groupId>io.springfox</groupId>
  217. <artifactId>springfox-swagger-ui</artifactId>
  218. <version>${swagger.version}</version>
  219. </dependency>
  220. <dependency>
  221. <groupId>org.projectlombok</groupId>
  222. <artifactId>lombok</artifactId>
  223. <version>${lombok.version}</version>
  224. </dependency>
  225. <!-- 数据库加密-->
  226. <dependency>
  227. <groupId>com.github.ulisesbocchio</groupId>
  228. <artifactId>jasypt-spring-boot-starter</artifactId>
  229. <version>${jasypt.version}</version>
  230. </dependency>
  231. <dependency>
  232. <groupId>io.reactivex.rxjava2</groupId>
  233. <artifactId>rxjava</artifactId>
  234. <version>${rxjava2.version}</version>
  235. </dependency>
  236. <dependency>
  237. <groupId>com.squareup.retrofit2</groupId>
  238. <artifactId>adapter-rxjava2</artifactId>
  239. <version>${retrofit2.version}</version>
  240. </dependency>
  241. <dependency>
  242. <groupId>com.squareup.retrofit2</groupId>
  243. <artifactId>retrofit</artifactId>
  244. <version>${retrofit2.version}</version>
  245. </dependency>
  246. <dependency>
  247. <groupId>org.glassfish</groupId>
  248. <artifactId>javax.el</artifactId>
  249. <version>${glassfish.version}</version>
  250. </dependency>
  251. <dependency>
  252. <groupId>javax.servlet.jsp</groupId>
  253. <artifactId>jsp-api</artifactId>
  254. <version>${jsp-api.version}</version>
  255. <scope>provided</scope>
  256. </dependency>
  257. </dependencies>
  258. <!-- war 插件***********************-->
  259. <!-- <build>-->
  260. <!-- <plugins>-->
  261. <!-- <plugin>-->
  262. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  263. <!-- <artifactId>maven-war-plugin</artifactId>-->
  264. <!-- <version>3.2.0</version>-->
  265. <!-- </plugin>-->
  266. <!-- </plugins>-->
  267. <!-- </build>-->
  268. <!-- 阿里云maven仓库 -->
  269. <repositories>
  270. <repository>
  271. <id>public</id>
  272. <name>aliyun nexus</name>
  273. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  274. <releases>
  275. <enabled>true</enabled>
  276. </releases>
  277. </repository>
  278. </repositories>
  279. <pluginRepositories>
  280. <pluginRepository>
  281. <id>public</id>
  282. <name>aliyun nexus</name>
  283. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  284. <releases>
  285. <enabled>true</enabled>
  286. </releases>
  287. <snapshots>
  288. <enabled>false</enabled>
  289. </snapshots>
  290. </pluginRepository>
  291. </pluginRepositories>
  292. </project>