25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

88 satır
3.2 KiB

2 yıl önce
  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.2-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.2-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>cc.mrbird</groupId>
  40. <artifactId>febs-common-logging-starter</artifactId>
  41. <version>${febs-cloud.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.github.whvcse</groupId>
  45. <artifactId>easy-captcha</artifactId>
  46. <version>${easy-captcha.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>net.logstash.logback</groupId>
  50. <artifactId>logstash-logback-encoder</artifactId>
  51. <version>${logstash-logback-encoder.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-jdbc</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.xkcoding</groupId>
  59. <artifactId>justauth-spring-boot-starter</artifactId>
  60. <version>${justauth.version}</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework.session</groupId>
  68. <artifactId>spring-session-core</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework.session</groupId>
  72. <artifactId>spring-session-data-redis</artifactId>
  73. </dependency>
  74. </dependencies>
  75. <build>
  76. <plugins>
  77. <plugin>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-maven-plugin</artifactId>
  80. </plugin>
  81. </plugins>
  82. </build>
  83. </project>