pom.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.sckw</groupId>
  8. <artifactId>sckw-service-platform</artifactId>
  9. <version>1.0.0</version>
  10. </parent>
  11. <artifactId>sckw-auth</artifactId>
  12. <version>1.0.0</version>
  13. <description>登录认证中心</description>
  14. <properties>
  15. <maven.compiler.source>17</maven.compiler.source>
  16. <maven.compiler.target>17</maven.compiler.target>
  17. <maven.compiler.compilerVersion>17</maven.compiler.compilerVersion>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>com.sckw</groupId>
  23. <artifactId>sckw-common-core</artifactId>
  24. <version>1.0.0</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.sckw</groupId>
  28. <artifactId>sckw-common-remote</artifactId>
  29. <version>1.0.0</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.sckw</groupId>
  33. <artifactId>sckw-system-api</artifactId>
  34. <version>1.0.0</version>
  35. <scope>compile</scope>
  36. </dependency>
  37. <!--web-->
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-web</artifactId>
  41. </dependency>
  42. <!--注册中心客户端-->
  43. <dependency>
  44. <groupId>com.alibaba.cloud</groupId>
  45. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  46. </dependency>
  47. <!--配置中心客户端-->
  48. <dependency>
  49. <groupId>com.alibaba.cloud</groupId>
  50. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.cloud</groupId>
  54. <artifactId>spring-cloud-starter-bootstrap</artifactId>
  55. </dependency>
  56. </dependencies>
  57. </project>