pom.xml 5.7 KB

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