pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. <mybatis-plus.version>3.0.3</mybatis-plus.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.mybatis.spring.boot</groupId>
  21. <artifactId>mybatis-spring-boot-starter</artifactId>
  22. </dependency>
  23. <!-- Redis缓存整合开始 -->
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-data-redis</artifactId>
  27. <exclusions>
  28. <exclusion>
  29. <groupId>io.lettuce</groupId>
  30. <artifactId>lettuce-core</artifactId>
  31. </exclusion>
  32. </exclusions>
  33. </dependency>
  34. <!-- Redis缓存整合结束 -->
  35. <dependency>
  36. <groupId>org.springframework.cloud</groupId>
  37. <artifactId>spring-cloud-starter-oauth2</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.cloud</groupId>
  41. <artifactId>spring-cloud-starter-openfeign</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-websocket</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.ym</groupId>
  49. <artifactId>mec-thirdparty</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>redis.clients</groupId>
  53. <artifactId>jedis</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.security.oauth</groupId>
  57. <artifactId>spring-security-oauth2</artifactId>
  58. <version>2.2.1.RELEASE</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.vdurmont</groupId>
  62. <artifactId>emoji-java</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.github.st-h</groupId>
  66. <artifactId>TarsosDSP</artifactId>
  67. <version>2.4.1</version>
  68. </dependency>
  69. <!--mybatis plus-->
  70. <dependency>
  71. <groupId>com.baomidou</groupId>
  72. <artifactId>mybatis-plus-boot-starter</artifactId>
  73. <version>${mybatis-plus.version}</version>
  74. </dependency>
  75. </dependencies>
  76. </project>