pom.xml 5.6 KB

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