pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>lx-im</artifactId>
  7. <groupId>com.lx</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>im-platform</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.lx</groupId>
  15. <artifactId>commom</artifactId>
  16. <version>1.0.0</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-web</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.baomidou</groupId>
  28. <artifactId>mybatis-plus-boot-starter</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.alibaba</groupId>
  32. <artifactId>druid</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>mysql</groupId>
  36. <artifactId>mysql-connector-java</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-jdbc</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>io.springfox</groupId>
  44. <artifactId>springfox-swagger2</artifactId>
  45. <version>${swagger.version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>io.springfox</groupId>
  49. <artifactId>springfox-swagger-ui</artifactId>
  50. <version>${swagger.version}</version>
  51. </dependency>
  52. <!-- 引入redis -->
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-data-redis</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-security</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.session</groupId>
  63. <artifactId>spring-session-data-redis</artifactId>
  64. </dependency>
  65. <!--minio-->
  66. <dependency>
  67. <groupId>io.minio</groupId>
  68. <artifactId>minio</artifactId>
  69. <version>8.4.3</version>
  70. <exclusions>
  71. <exclusion>
  72. <groupId>com.squareup.okhttp3</groupId>
  73. <artifactId>okhttp</artifactId>
  74. </exclusion>
  75. <exclusion>
  76. <groupId>org.jetbrains.kotlin</groupId>
  77. <artifactId>kotlin-stdlib</artifactId>
  78. </exclusion>
  79. </exclusions>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.squareup.okhttp3</groupId>
  83. <artifactId>okhttp</artifactId>
  84. <version>4.9.0</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.jetbrains.kotlin</groupId>
  88. <artifactId>kotlin-stdlib</artifactId>
  89. <version>1.3.70</version>
  90. </dependency>
  91. <!--thumbnailator图片处理-->
  92. <dependency>
  93. <groupId>net.coobird</groupId>
  94. <artifactId>thumbnailator</artifactId>
  95. <version>0.4.8</version>
  96. </dependency>
  97. </dependencies>
  98. <build>
  99. <plugins>
  100. <plugin>
  101. <groupId>org.apache.maven.plugins</groupId>
  102. <artifactId>maven-compiler-plugin</artifactId>
  103. <configuration>
  104. <source>8</source>
  105. <target>8</target>
  106. </configuration>
  107. </plugin>
  108. </plugins>
  109. </build>
  110. </project>