pom.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. <parent>
  5. <groupId>com.antu.cd.gbp</groupId>
  6. <artifactId>gt-baseinfo-platform</artifactId>
  7. <version>0.1</version>
  8. </parent>
  9. <artifactId>oauth-center</artifactId>
  10. <packaging>pom</packaging>
  11. <description>OAuth2.0认证体系</description>
  12. <dependencies>
  13. <!-- 日志统一配置 -->
  14. <dependency>
  15. <groupId>com.antu.cd.gbp</groupId>
  16. <artifactId>log</artifactId>
  17. </dependency>
  18. <!-- 关系型数据库配置 -->
  19. <dependency>
  20. <groupId>com.antu.cd.gbp</groupId>
  21. <artifactId>db</artifactId>
  22. </dependency>
  23. <!-- 非关系型数据库配置 -->
  24. <dependency>
  25. <groupId>com.antu.cd.gbp</groupId>
  26. <artifactId>redis</artifactId>
  27. </dependency>
  28. <!-- 公共实体类配置 -->
  29. <dependency>
  30. <groupId>com.antu.cd.gbp</groupId>
  31. <artifactId>common</artifactId>
  32. </dependency>
  33. <!-- web守护进程配置 -->
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-web</artifactId>
  37. </dependency>
  38. <!-- API文档配置 -->
  39. <dependency>
  40. <groupId>com.antu.cd.gbp</groupId>
  41. <artifactId>swagger</artifactId>
  42. </dependency>
  43. </dependencies>
  44. <modules>
  45. <module>auth-server</module>
  46. </modules>
  47. </project>