pom.xml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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.vctgo</groupId>
  6. <artifactId>vctgo</artifactId>
  7. <version>1.2.2</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>vctgo-auth</artifactId>
  11. <description>
  12. vctgo-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. <!-- vctgo Common Security-->
  41. <dependency>
  42. <groupId>com.vctgo</groupId>
  43. <artifactId>vctgo-common-security</artifactId>
  44. </dependency>
  45. <!--验证码 -->
  46. <dependency>
  47. <groupId>pro.fessional</groupId>
  48. <artifactId>kaptcha</artifactId>
  49. </dependency>
  50. <!-- anji滑块验证码 -->
  51. <dependency>
  52. <groupId>com.anji-plus</groupId>
  53. <artifactId>spring-boot-starter-captcha</artifactId>
  54. <version>1.3.0</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.github.whvcse</groupId>
  58. <artifactId>easy-captcha</artifactId>
  59. <version>1.6.2</version>
  60. </dependency>
  61. </dependencies>
  62. <build>
  63. <finalName>${project.artifactId}</finalName>
  64. <plugins>
  65. <plugin>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-maven-plugin</artifactId>
  68. <version>2.3.3.RELEASE</version>
  69. <executions>
  70. <execution>
  71. <goals>
  72. <goal>repackage</goal>
  73. </goals>
  74. </execution>
  75. </executions>
  76. </plugin>
  77. </plugins>
  78. </build>
  79. </project>