pom.xml 2.8 KB

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