pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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-user</artifactId>
  9. <version>1.0</version>
  10. </parent>
  11. <artifactId>edu-user-server</artifactId>
  12. <name>edu-user-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.cloud</groupId>
  20. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-websocket</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.boot</groupId>
  32. <artifactId>spring-boot-starter-web</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.cloud</groupId>
  36. <artifactId>spring-cloud-openfeign-core</artifactId>
  37. <scope>compile</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.spring4all</groupId>
  41. <artifactId>swagger-spring-boot-starter</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.keao.edu</groupId>
  45. <artifactId>edu-common</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>javax.servlet</groupId>
  49. <artifactId>javax.servlet-api</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.alibaba</groupId>
  53. <artifactId>druid-spring-boot-starter</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>mysql</groupId>
  57. <artifactId>mysql-connector-java</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.keao.edu</groupId>
  61. <artifactId>edu-auth-api</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.keao.edu</groupId>
  65. <artifactId>edu-auth-api</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.keao.edu</groupId>
  69. <artifactId>edu-im-api</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.keao.edu</groupId>
  73. <artifactId>edu-thirdparty</artifactId>
  74. <version>1.0</version>
  75. <scope>compile</scope>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.keao.edu</groupId>
  79. <artifactId>edu-datasource</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.keao.edu</groupId>
  83. <artifactId>edu-user-client-api</artifactId>
  84. </dependency>
  85. </dependencies>
  86. <build>
  87. <plugins>
  88. <plugin>
  89. <groupId>org.springframework.boot</groupId>
  90. <artifactId>spring-boot-maven-plugin</artifactId>
  91. </plugin>
  92. <plugin>
  93. <groupId>com.spotify</groupId>
  94. <artifactId>docker-maven-plugin</artifactId>
  95. </plugin>
  96. </plugins>
  97. </build>
  98. </project>