pom.xml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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. <!--父工程信息-->
  5. <parent>
  6. <groupId>com.shkpr.service</groupId>
  7. <artifactId>kpr-custom-gateway</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <!--工件名-->
  11. <artifactId>custom-gateway-core</artifactId>
  12. <!--版本号-->
  13. <version>${project.version}</version>
  14. <!--打包方式-->
  15. <packaging>jar</packaging>
  16. <!--项目名-->
  17. <name>CustomGatewayCore</name>
  18. <!--项目描述-->
  19. <description>核心模块</description>
  20. <!--依赖项-->
  21. <dependencies>
  22. <!--spring-security-->
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-security</artifactId>
  26. </dependency>
  27. <!--spring-validation-->
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-validation</artifactId>
  31. </dependency>
  32. <!--spring-data-->
  33. <dependency>
  34. <groupId>org.springframework.data</groupId>
  35. <artifactId>spring-data-jdbc</artifactId>
  36. </dependency>
  37. <!--mybatis-->
  38. <dependency>
  39. <groupId>org.mybatis.spring.boot</groupId>
  40. <artifactId>mybatis-spring-boot-starter</artifactId>
  41. <version>${mybatis.spring.version}</version>
  42. </dependency>
  43. <!--postgresql-->
  44. <dependency>
  45. <groupId>org.postgresql</groupId>
  46. <artifactId>postgresql</artifactId>
  47. </dependency>
  48. <!--influxdb-->
  49. <dependency>
  50. <groupId>org.influxdb</groupId>
  51. <artifactId>influxdb-java</artifactId>
  52. </dependency>
  53. <!--h2-->
  54. <dependency>
  55. <groupId>com.h2database</groupId>
  56. <artifactId>h2</artifactId>
  57. </dependency>
  58. <!--jts-->
  59. <dependency>
  60. <groupId>org.locationtech.jts</groupId>
  61. <artifactId>jts-core</artifactId>
  62. <version>${jts.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.locationtech.jts.io</groupId>
  66. <artifactId>jts-io-common</artifactId>
  67. <version>${jts.version}</version>
  68. </dependency>
  69. <!--geotools-->
  70. <dependency>
  71. <groupId>org.geotools</groupId>
  72. <artifactId>gt-shapefile</artifactId>
  73. <version>${geotools.version}</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.geotools</groupId>
  77. <artifactId>gt-epsg-hsql</artifactId>
  78. <version>${geotools.version}</version>
  79. </dependency>
  80. <!--jjwt-->
  81. <dependency>
  82. <groupId>io.jsonwebtoken</groupId>
  83. <artifactId>jjwt</artifactId>
  84. <version>${jjwt.version}</version>
  85. </dependency>
  86. <!--json-yml-->
  87. <dependency>
  88. <groupId>com.fasterxml.jackson.dataformat</groupId>
  89. <artifactId>jackson-dataformat-yaml</artifactId>
  90. </dependency>
  91. <!--okhttp-->
  92. <dependency>
  93. <groupId>com.squareup.okhttp3</groupId>
  94. <artifactId>okhttp</artifactId>
  95. <version>${okhttp.version}</version>
  96. </dependency>
  97. <!--httpclient-->
  98. <dependency>
  99. <groupId>org.apache.httpcomponents</groupId>
  100. <artifactId>httpclient</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.apache.httpcomponents</groupId>
  104. <artifactId>fluent-hc</artifactId>
  105. </dependency>
  106. <!--poi-->
  107. <dependency>
  108. <groupId>org.apache.poi</groupId>
  109. <artifactId>poi</artifactId>
  110. <version>${poi.version}</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.apache.poi</groupId>
  114. <artifactId>poi-ooxml</artifactId>
  115. <version>${poi.version}</version>
  116. </dependency>
  117. <!--base-->
  118. <dependency>
  119. <groupId>com.global</groupId>
  120. <artifactId>gbase</artifactId>
  121. <version>${gbase.version}</version>
  122. <scope>system</scope>
  123. <systemPath>${project.basedir}/../libs/gbase.${gbase.version}.jar</systemPath>
  124. </dependency>
  125. </dependencies>
  126. <!--构建脚本-->
  127. <build>
  128. <!--插件项-->
  129. <plugins>
  130. <!--maven-install-->
  131. <plugin>
  132. <groupId>org.apache.maven.plugins</groupId>
  133. <artifactId>maven-install-plugin</artifactId>
  134. <executions>
  135. <execution>
  136. <id>default-install</id>
  137. <phase>none</phase>
  138. </execution>
  139. </executions>
  140. </plugin>
  141. </plugins>
  142. </build>
  143. </project>