pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-websocket</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.ym</groupId>
  48. <artifactId>mec-thirdparty</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>redis.clients</groupId>
  52. <artifactId>jedis</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.security.oauth</groupId>
  56. <artifactId>spring-security-oauth2</artifactId>
  57. <version>2.2.1.RELEASE</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.vdurmont</groupId>
  61. <artifactId>emoji-java</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.tarsos</groupId>
  65. <artifactId>TarsosDSP</artifactId>
  66. <version>0.0.1</version>
  67. </dependency>
  68. </dependencies>
  69. </project>