pom.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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. <modelVersion>4.0.0</modelVersion>
  6. <artifactId>box-im</artifactId>
  7. <groupId>com.bx</groupId>
  8. <packaging>pom</packaging>
  9. <version>2.0.0</version>
  10. <modules>
  11. <module>im-platform</module>
  12. <module>im-server</module>
  13. <module>im-commom</module>
  14. <module>im-client</module>
  15. </modules>
  16. <properties>
  17. <maven.compiler.source>1.8</maven.compiler.source>
  18. <maven.compiler.target>1.8</maven.compiler.target>
  19. <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
  20. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  21. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  22. <java.version>1.8</java.version>
  23. <mybatisplus.version>3.4.0</mybatisplus.version>
  24. <fastjson.version>1.2.40</fastjson.version>
  25. <velocity.version>1.7</velocity.version>
  26. <swagger.version>2.7.0</swagger.version>
  27. <hutool.version>5.8.16</hutool.version>
  28. <druid.version>1.1.22</druid.version>
  29. <commons-lang3.version>3.8.1</commons-lang3.version>
  30. <lombok.version>1.18.16</lombok.version>
  31. <mysql.version>5.1.46</mysql.version>
  32. </properties>
  33. <dependencyManagement>
  34. <dependencies>
  35. <dependency>
  36. <!-- Import dependency management from Spring Boot -->
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-dependencies</artifactId>
  39. <version>2.7.17</version>
  40. <type>pom</type>
  41. <scope>import</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.projectlombok</groupId>
  45. <artifactId>lombok</artifactId>
  46. <version>${lombok.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.baomidou</groupId>
  50. <artifactId>mybatis-plus-boot-starter</artifactId>
  51. <version>${mybatisplus.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.apache.commons</groupId>
  55. <artifactId>commons-lang3</artifactId>
  56. <version>${commons-lang3.version}</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.alibaba</groupId>
  60. <artifactId>fastjson</artifactId>
  61. <version>${fastjson.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.alibaba</groupId>
  65. <artifactId>druid</artifactId>
  66. <version>${druid.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.apache.velocity</groupId>
  70. <artifactId>velocity</artifactId>
  71. <version>${velocity.version}</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>io.springfox</groupId>
  75. <artifactId>springfox-swagger2</artifactId>
  76. <version>${swagger.version}</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>io.springfox</groupId>
  80. <artifactId>springfox-swagger-ui</artifactId>
  81. <version>${swagger.version}</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>cn.hutool</groupId>
  85. <artifactId>hutool-all</artifactId>
  86. <version>${hutool.version}</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>mysql</groupId>
  90. <artifactId>mysql-connector-java</artifactId>
  91. <version>${mysql.version}</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.apache.poi</groupId>
  95. <artifactId>poi-ooxml</artifactId>
  96. <version>4.1.2</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>commons-io</groupId>
  100. <artifactId>commons-io</artifactId>
  101. <version>2.6</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>dom4j</groupId>
  105. <artifactId>dom4j</artifactId>
  106. <version>1.6.1</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.codehaus.jackson</groupId>
  110. <artifactId>jackson-mapper-asl</artifactId>
  111. <version>1.9.13</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>javax.interceptor</groupId>
  115. <artifactId>javax.interceptor-api</artifactId>
  116. <version>1.2</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.springframework.security</groupId>
  120. <artifactId>spring-security-jwt</artifactId>
  121. <version>1.0.10.RELEASE</version>
  122. </dependency>
  123. </dependencies>
  124. </dependencyManagement>
  125. <repositories>
  126. <repository>
  127. <id>aliyun-maven</id>
  128. <name>aliyun maven</name>
  129. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  130. <snapshots>
  131. <enabled>false</enabled>
  132. </snapshots>
  133. </repository>
  134. </repositories>
  135. </project>