pom.xml 3.1 KB

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