pom.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>cc.mrbird</groupId>
  7. <artifactId>febs-cloud</artifactId>
  8. <version>2.1-RELEASE</version>
  9. <relativePath>../febs-cloud/pom.xml</relativePath>
  10. </parent>
  11. <artifactId>febs-auth</artifactId>
  12. <name>FEBS-Auth</name>
  13. <description>FEBS-Cloud认证服务器</description>
  14. <properties>
  15. <febs-cloud.version>2.1-RELEASE</febs-cloud.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>cc.mrbird</groupId>
  20. <artifactId>febs-common-redis-starter</artifactId>
  21. <version>${febs-cloud.version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>cc.mrbird</groupId>
  25. <artifactId>febs-common-datasource-starter</artifactId>
  26. <version>${febs-cloud.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>cc.mrbird</groupId>
  30. <artifactId>febs-common-doc-starter</artifactId>
  31. <version>${febs-cloud.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>cc.mrbird</groupId>
  35. <artifactId>febs-common-security-starter</artifactId>
  36. <version>${febs-cloud.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.github.whvcse</groupId>
  40. <artifactId>easy-captcha</artifactId>
  41. <version>${easy-captcha.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>net.logstash.logback</groupId>
  45. <artifactId>logstash-logback-encoder</artifactId>
  46. <version>${logstash-logback-encoder.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-jdbc</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.xkcoding</groupId>
  54. <artifactId>justauth-spring-boot-starter</artifactId>
  55. <version>${justauth.version}</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  60. </dependency>
  61. </dependencies>
  62. <build>
  63. <plugins>
  64. <plugin>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-maven-plugin</artifactId>
  67. </plugin>
  68. </plugins>
  69. </build>
  70. </project>