pom.xml 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  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. <!-- museum parent-->
  7. <groupId>com.gis</groupId>
  8. <!--<artifactId>gis_cms</artifactId>-->
  9. <artifactId>smart_chengdu_xindu_dafeng</artifactId>
  10. <packaging>pom</packaging>
  11. <version>1.0.0</version>
  12. <parent>
  13. <groupId>org.springframework.boot</groupId>
  14. <artifactId>spring-boot-starter-parent</artifactId>
  15. <version>2.3.4.RELEASE</version>
  16. <relativePath/> <!-- lookup parent from repository -->
  17. </parent>
  18. <modules>
  19. <module>gis_common</module>
  20. <module>gis_web</module>
  21. <module>gis_application</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. <spring.boot.version>2.1.0.RELEASE</spring.boot.version>
  28. <gis.version>1.0.0</gis.version>
  29. <fastjson.version>1.2.83</fastjson.version>
  30. <druid.version>1.1.14</druid.version>
  31. <hutool.version>5.3.3</hutool.version>
  32. <lombok.version>1.18.2</lombok.version>
  33. <lang3.version>3.7</lang3.version>
  34. <mysql.version>8.0.15</mysql.version>
  35. <shiro.version>1.4.0</shiro.version>
  36. <jwt.version>3.2.0</jwt.version>
  37. <jjwt.version>0.6.0</jjwt.version>
  38. <aliyun.core.version>4.0.3</aliyun.core.version>
  39. <aliyun.dysmsapi.version>1.1.0</aliyun.dysmsapi.version>
  40. <aliyun.oss.version>2.5.0</aliyun.oss.version>
  41. <tk.mybatis.version>2.0.2</tk.mybatis.version>
  42. <tk.mapper.version>4.0.3</tk.mapper.version>
  43. <pagehelper.version>1.2.5</pagehelper.version>
  44. <knife4j.version>2.0.2</knife4j.version>
  45. <junit.version>4.12</junit.version>
  46. </properties>
  47. <!--<repositories>-->
  48. <!--<repository>-->
  49. <!--<id>releases</id>-->
  50. <!--<url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>-->
  51. <!--</repository>-->
  52. <!--<repository>-->
  53. <!--<id>nexus-aliyun</id>-->
  54. <!--<url>http://maven.aliyun.com/nexus/content/groups/public</url>-->
  55. <!--</repository>-->
  56. <!--<repository>-->
  57. <!--<id>snapshots</id>-->
  58. <!--<url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>-->
  59. <!--</repository>-->
  60. <!--</repositories>-->
  61. <!--dependencyManagement用于管理依赖版本号, 必须写版本号,不然依赖不上-->
  62. <dependencyManagement>
  63. <dependencies>
  64. <!--模块版本管理-->
  65. <dependency>
  66. <groupId>com.gis</groupId>
  67. <artifactId>gis_application</artifactId>
  68. <version>${gis.version}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.gis</groupId>
  72. <artifactId>gis_common</artifactId>
  73. <version>${gis.version}</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.gis</groupId>
  77. <artifactId>gis_web</artifactId>
  78. <version>${gis.version}</version>
  79. </dependency>
  80. <!-- https://mvnrepository.com/artifact/org.springframework/spring-core -->
  81. <dependency>
  82. <groupId>org.springframework</groupId>
  83. <artifactId>spring-core</artifactId>
  84. <version>5.2.20.RELEASE</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.springframework.boot</groupId>
  88. <artifactId>spring-boot-starter-web</artifactId>
  89. <version>${spring.boot.version}</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-starter-test</artifactId>
  94. <scope>test</scope>
  95. <version>${spring.boot.version}</version>
  96. </dependency>
  97. <!-- lombok -->
  98. <dependency>
  99. <groupId>org.projectlombok</groupId>
  100. <artifactId>lombok</artifactId>
  101. <version>${lombok.version}</version>
  102. </dependency>
  103. <!-- fastjson -->
  104. <dependency>
  105. <groupId>com.alibaba</groupId>
  106. <artifactId>fastjson</artifactId>
  107. <version>${fastjson.version}</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.locationtech.proj4j</groupId>
  111. <artifactId>proj4j</artifactId>
  112. <version>1.1.3</version>
  113. </dependency>
  114. <!-- 工具类 -->
  115. <dependency>
  116. <groupId>cn.hutool</groupId>
  117. <artifactId>hutool-all</artifactId>
  118. <version>${hutool.version}</version>
  119. </dependency>
  120. <!-- StringUtils -->
  121. <dependency>
  122. <groupId>org.apache.commons</groupId>
  123. <artifactId>commons-lang3</artifactId>
  124. <version>${lang3.version}</version>
  125. </dependency>
  126. <!-- knife4j aip 包-->
  127. <dependency>
  128. <groupId>com.github.xiaoymin</groupId>
  129. <artifactId>knife4j-spring-boot-starter</artifactId>
  130. <version>${knife4j.version}</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>junit</groupId>
  134. <artifactId>junit</artifactId>
  135. <version>${junit.version}</version>
  136. </dependency>
  137. </dependencies>
  138. </dependencyManagement>
  139. <!--<distributionManagement>-->
  140. <!--<repository>-->
  141. <!--&lt;!&ndash; 这里的ID要和setting的id一致 &ndash;&gt;-->
  142. <!--<id>releases</id>-->
  143. <!--<url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>-->
  144. <!--</repository>-->
  145. <!--&lt;!&ndash;这是打成快照版本的配置 &ndash;&gt;-->
  146. <!--<snapshotRepository>-->
  147. <!--<id>snapshots</id>-->
  148. <!--<url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>-->
  149. <!--</snapshotRepository>-->
  150. <!--</distributionManagement>-->
  151. </project>