pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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-kv-->
  33. <dependency>
  34. <groupId>org.springframework.data</groupId>
  35. <artifactId>spring-data-keyvalue</artifactId>
  36. </dependency>
  37. <!--spring-data-->
  38. <dependency>
  39. <groupId>org.springframework.data</groupId>
  40. <artifactId>spring-data-jdbc</artifactId>
  41. </dependency>
  42. <!--mybatis-->
  43. <dependency>
  44. <groupId>org.mybatis.spring.boot</groupId>
  45. <artifactId>mybatis-spring-boot-starter</artifactId>
  46. <version>${mybatis.spring.version}</version>
  47. </dependency>
  48. <!--postgresql-->
  49. <dependency>
  50. <groupId>org.postgresql</groupId>
  51. <artifactId>postgresql</artifactId>
  52. </dependency>
  53. <!--influxdb-->
  54. <dependency>
  55. <groupId>org.influxdb</groupId>
  56. <artifactId>influxdb-java</artifactId>
  57. </dependency>
  58. <!--h2-->
  59. <dependency>
  60. <groupId>com.h2database</groupId>
  61. <artifactId>h2</artifactId>
  62. </dependency>
  63. <!--jjwt-->
  64. <dependency>
  65. <groupId>io.jsonwebtoken</groupId>
  66. <artifactId>jjwt</artifactId>
  67. <version>${jjwt.version}</version>
  68. </dependency>
  69. <!--json-yml-->
  70. <dependency>
  71. <groupId>com.fasterxml.jackson.dataformat</groupId>
  72. <artifactId>jackson-dataformat-yaml</artifactId>
  73. </dependency>
  74. <!--okhttp-->
  75. <dependency>
  76. <groupId>com.squareup.okhttp3</groupId>
  77. <artifactId>okhttp</artifactId>
  78. <version>${okhttp.version}</version>
  79. </dependency>
  80. <!--httpclient-->
  81. <dependency>
  82. <groupId>org.apache.httpcomponents</groupId>
  83. <artifactId>httpclient</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.apache.httpcomponents</groupId>
  87. <artifactId>fluent-hc</artifactId>
  88. </dependency>
  89. <!--poi-->
  90. <dependency>
  91. <groupId>org.apache.poi</groupId>
  92. <artifactId>poi</artifactId>
  93. <version>${poi.version}</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.apache.poi</groupId>
  97. <artifactId>poi-ooxml</artifactId>
  98. <version>${poi.version}</version>
  99. </dependency>
  100. <!--base-->
  101. <dependency>
  102. <groupId>com.global</groupId>
  103. <artifactId>gbase</artifactId>
  104. <version>${gbase.version}</version>
  105. <scope>system</scope>
  106. <systemPath>${project.basedir}/../libs/gbase.${gbase.version}.jar</systemPath>
  107. </dependency>
  108. </dependencies>
  109. <!--构建脚本-->
  110. <build>
  111. <!--插件项-->
  112. <plugins>
  113. <!--maven-install-->
  114. <plugin>
  115. <groupId>org.apache.maven.plugins</groupId>
  116. <artifactId>maven-install-plugin</artifactId>
  117. <executions>
  118. <execution>
  119. <id>default-install</id>
  120. <phase>none</phase>
  121. </execution>
  122. </executions>
  123. </plugin>
  124. </plugins>
  125. </build>
  126. </project>