pom.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>com.github.zuihou</groupId>
  7. <artifactId>imcs-admin-boot</artifactId>
  8. <version>b.2.5-SNAPSHOT</version>
  9. <relativePath>../</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>imcs-oauth-biz</artifactId>
  13. <name>${project.artifactId}</name>
  14. <description>认证服务业务模块</description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.github.zuihou</groupId>
  18. <artifactId>imcs-authority-biz</artifactId>
  19. <version>${imcs-project.version}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.github.zuihou</groupId>
  23. <artifactId>imcs-tenant-biz</artifactId>
  24. <version>${imcs-project.version}</version>
  25. </dependency>
  26. <!-- jwt 只有权限服务需要使用 -->
  27. <dependency>
  28. <groupId>com.github.zuihou</groupId>
  29. <artifactId>zuihou-jwt-starter</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.github.whvcse</groupId>
  33. <artifactId>easy-captcha</artifactId>
  34. </dependency>
  35. </dependencies>
  36. </project>