pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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. <!--jjwt-->
  59. <dependency>
  60. <groupId>io.jsonwebtoken</groupId>
  61. <artifactId>jjwt</artifactId>
  62. <version>${jjwt.version}</version>
  63. </dependency>
  64. <!--json-yml-->
  65. <dependency>
  66. <groupId>com.fasterxml.jackson.dataformat</groupId>
  67. <artifactId>jackson-dataformat-yaml</artifactId>
  68. </dependency>
  69. <!--okhttp-->
  70. <dependency>
  71. <groupId>com.squareup.okhttp3</groupId>
  72. <artifactId>okhttp</artifactId>
  73. <version>${okhttp.version}</version>
  74. </dependency>
  75. <!--httpclient-->
  76. <dependency>
  77. <groupId>org.apache.httpcomponents</groupId>
  78. <artifactId>httpclient</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.apache.httpcomponents</groupId>
  82. <artifactId>fluent-hc</artifactId>
  83. </dependency>
  84. <!--poi-->
  85. <dependency>
  86. <groupId>org.apache.poi</groupId>
  87. <artifactId>poi</artifactId>
  88. <version>${poi.version}</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.apache.poi</groupId>
  92. <artifactId>poi-ooxml</artifactId>
  93. <version>${poi.version}</version>
  94. </dependency>
  95. <!--base-->
  96. <dependency>
  97. <groupId>com.global</groupId>
  98. <artifactId>gbase</artifactId>
  99. <version>${gbase.version}</version>
  100. <scope>system</scope>
  101. <systemPath>${project.basedir}/../libs/gbase.${gbase.version}.jar</systemPath>
  102. </dependency>
  103. </dependencies>
  104. <!--构建脚本-->
  105. <build>
  106. <!--插件项-->
  107. <plugins>
  108. <!--maven-install-->
  109. <plugin>
  110. <groupId>org.apache.maven.plugins</groupId>
  111. <artifactId>maven-install-plugin</artifactId>
  112. <executions>
  113. <execution>
  114. <id>default-install</id>
  115. <phase>none</phase>
  116. </execution>
  117. </executions>
  118. </plugin>
  119. </plugins>
  120. </build>
  121. </project>