pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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-saas</artifactId>
  9. <version>1.0</version>
  10. </parent>
  11. <artifactId>edu-common</artifactId>
  12. <name>edu-common</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>com.keao.edu</groupId>
  20. <artifactId>edu-thirdparty</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.keao.edu</groupId>
  24. <artifactId>edu-util</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.mybatis.spring.boot</groupId>
  28. <artifactId>mybatis-spring-boot-starter</artifactId>
  29. </dependency>
  30. <!-- Redis缓存整合开始 -->
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-data-redis</artifactId>
  34. <exclusions>
  35. <exclusion>
  36. <groupId>io.lettuce</groupId>
  37. <artifactId>lettuce-core</artifactId>
  38. </exclusion>
  39. </exclusions>
  40. </dependency>
  41. <!-- Redis缓存整合结束 -->
  42. <dependency>
  43. <groupId>org.springframework.cloud</groupId>
  44. <artifactId>spring-cloud-starter-oauth2</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.cloud</groupId>
  48. <artifactId>spring-cloud-starter-openfeign</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>redis.clients</groupId>
  52. <artifactId>jedis</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.commons</groupId>
  56. <artifactId>commons-lang3</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>javax.servlet</groupId>
  60. <artifactId>javax.servlet-api</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.vdurmont</groupId>
  64. <artifactId>emoji-java</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.spring4all</groupId>
  68. <artifactId>swagger-spring-boot-starter</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework</groupId>
  72. <artifactId>spring-webmvc</artifactId>
  73. </dependency>
  74. </dependencies>
  75. </project>