pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <?xml version="1.0"?>
  2. <project
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  4. xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.keao.edu</groupId>
  8. <artifactId>edu-auth</artifactId>
  9. <version>1.0</version>
  10. </parent>
  11. <artifactId>edu-auth-server</artifactId>
  12. <name>edu-auth-server</name>
  13. <url>http://maven.apache.org</url>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-web</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.cloud</groupId>
  24. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.cloud</groupId>
  28. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.cloud</groupId>
  32. <artifactId>spring-cloud-starter-oauth2</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.cloud</groupId>
  36. <artifactId>spring-cloud-starter-security</artifactId>
  37. </dependency>
  38. <!-- swagger-spring-boot -->
  39. <dependency>
  40. <groupId>com.spring4all</groupId>
  41. <artifactId>swagger-spring-boot-starter</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.alibaba</groupId>
  45. <artifactId>druid-spring-boot-starter</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.github.penggle</groupId>
  49. <artifactId>kaptcha</artifactId>
  50. <version>2.3.2</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.apache.commons</groupId>
  54. <artifactId>commons-pool2</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.keao.edu</groupId>
  58. <artifactId>edu-common</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.keao.edu</groupId>
  62. <artifactId>edu-auth-api</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.keao.edu</groupId>
  66. <artifactId>edu-user-client-api</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.keao.edu</groupId>
  70. <artifactId>edu-im-api</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.keao.edu</groupId>
  74. <artifactId>edu-datasource</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>mysql</groupId>
  78. <artifactId>mysql-connector-java</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.springframework.cloud</groupId>
  82. <artifactId>spring-cloud-openfeign-core</artifactId>
  83. <scope>compile</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.keao.edu</groupId>
  87. <artifactId>edu-user-client-api</artifactId>
  88. </dependency>
  89. </dependencies>
  90. <build>
  91. <plugins>
  92. <plugin>
  93. <groupId>org.springframework.boot</groupId>
  94. <artifactId>spring-boot-maven-plugin</artifactId>
  95. </plugin>
  96. <plugin>
  97. <groupId>com.spotify</groupId>
  98. <artifactId>docker-maven-plugin</artifactId>
  99. </plugin>
  100. </plugins>
  101. </build>
  102. </project>