pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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.ym</groupId>
  8. <artifactId>mec-common</artifactId>
  9. <version>1.0</version>
  10. </parent>
  11. <artifactId>common-core</artifactId>
  12. <name>common-core</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.mybatis.spring.boot</groupId>
  20. <artifactId>mybatis-spring-boot-starter</artifactId>
  21. </dependency>
  22. <!-- Redis缓存整合开始 -->
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-data-redis</artifactId>
  26. <exclusions>
  27. <exclusion>
  28. <groupId>io.lettuce</groupId>
  29. <artifactId>lettuce-core</artifactId>
  30. </exclusion>
  31. </exclusions>
  32. </dependency>
  33. <!-- Redis缓存整合结束 -->
  34. <dependency>
  35. <groupId>org.springframework.cloud</groupId>
  36. <artifactId>spring-cloud-starter-oauth2</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.cloud</groupId>
  40. <artifactId>spring-cloud-starter-openfeign</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.ym</groupId>
  44. <artifactId>mec-thirdparty</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>redis.clients</groupId>
  48. <artifactId>jedis</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.security.oauth</groupId>
  52. <artifactId>spring-security-oauth2</artifactId>
  53. <version>2.2.1.RELEASE</version>
  54. </dependency>
  55. </dependencies>
  56. </project>