pom.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?xml version="1.0"?>
  2. <project
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
  4. xmlns="http://maven.apache.org/POM/4.0.0"
  5. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  6. <modelVersion>4.0.0</modelVersion>
  7. <parent>
  8. <groupId>gihon.component</groupId>
  9. <artifactId>component-parent</artifactId>
  10. <version>0.0.1-SNAPSHOT</version>
  11. <relativePath>../</relativePath>
  12. </parent>
  13. <artifactId>component-websecurity</artifactId>
  14. <name>component-websecurity</name>
  15. <description>web-security基础模块</description>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>gihon.component</groupId>
  22. <artifactId>component-entity</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>gihon.component</groupId>
  26. <artifactId>component-common</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>gihon.component</groupId>
  30. <artifactId>component-database</artifactId>
  31. </dependency>
  32. <!-- security 按需开启引用 -->
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-security</artifactId>
  36. <scope>provided</scope>
  37. <optional>true</optional>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-oauth2-client</artifactId>
  42. <scope>provided</scope>
  43. <optional>true</optional>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-oauth2-resource-server</artifactId>
  48. <scope>provided</scope>
  49. <optional>true</optional>
  50. </dependency>
  51. </dependencies>
  52. </project>