pom.xml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>com.zkhz</groupId>
  6. <artifactId>hcp</artifactId>
  7. <version>1.2.2</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>hcp-auth</artifactId>
  11. <description>
  12. hcp-auth认证授权中心
  13. </description>
  14. <dependencies>
  15. <!-- SpringCloud Alibaba Nacos -->
  16. <dependency>
  17. <groupId>com.alibaba.cloud</groupId>
  18. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  19. </dependency>
  20. <!-- SpringCloud Alibaba Nacos Config -->
  21. <dependency>
  22. <groupId>com.alibaba.cloud</groupId>
  23. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  24. </dependency>
  25. <!-- SpringCloud Alibaba Sentinel -->
  26. <dependency>
  27. <groupId>com.alibaba.cloud</groupId>
  28. <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  29. </dependency>
  30. <!-- SpringBoot Web -->
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-web</artifactId>
  34. </dependency>
  35. <!-- SpringBoot Actuator -->
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-actuator</artifactId>
  39. </dependency>
  40. <!-- hcp Common Security-->
  41. <dependency>
  42. <groupId>com.zkhz</groupId>
  43. <artifactId>hcp-common-security</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.zkhz</groupId>
  47. <artifactId>hcp-common-swagger</artifactId>
  48. </dependency>
  49. </dependencies>
  50. <build>
  51. <finalName>${project.artifactId}</finalName>
  52. <plugins>
  53. <plugin>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-maven-plugin</artifactId>
  56. <version>2.3.3.RELEASE</version>
  57. <executions>
  58. <execution>
  59. <goals>
  60. <goal>repackage</goal>
  61. </goals>
  62. </execution>
  63. </executions>
  64. </plugin>
  65. </plugins>
  66. </build>
  67. </project>