pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>com.onemap</groupId>
  7. <artifactId>onemap-common</artifactId>
  8. <version>3.6.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>onemap-common-core</artifactId>
  12. <description>
  13. onemap-common-core核心模块
  14. </description>
  15. <dependencies>
  16. <!--引入dozer依赖-->
  17. <dependency>
  18. <groupId>com.github.dozermapper</groupId>
  19. <artifactId>dozer-core</artifactId>
  20. <version>6.5.2</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.github.dozermapper</groupId>
  24. <artifactId>dozer-spring-boot-starter</artifactId>
  25. <version>6.5.2</version>
  26. </dependency>
  27. <!-- SpringCloud Openfeign -->
  28. <dependency>
  29. <groupId>org.springframework.cloud</groupId>
  30. <artifactId>spring-cloud-starter-openfeign</artifactId>
  31. </dependency>
  32. <!-- SpringCloud Loadbalancer -->
  33. <dependency>
  34. <groupId>org.springframework.cloud</groupId>
  35. <artifactId>spring-cloud-starter-loadbalancer</artifactId>
  36. </dependency>
  37. <!-- Spring Context Support -->
  38. <dependency>
  39. <groupId>org.springframework</groupId>
  40. <artifactId>spring-context-support</artifactId>
  41. </dependency>
  42. <!-- Spring Web -->
  43. <dependency>
  44. <groupId>org.springframework</groupId>
  45. <artifactId>spring-web</artifactId>
  46. </dependency>
  47. <!-- Transmittable ThreadLocal -->
  48. <dependency>
  49. <groupId>com.alibaba</groupId>
  50. <artifactId>transmittable-thread-local</artifactId>
  51. </dependency>
  52. <!-- Pagehelper -->
  53. <dependency>
  54. <groupId>com.github.pagehelper</groupId>
  55. <artifactId>pagehelper-spring-boot-starter</artifactId>
  56. </dependency>
  57. <!-- Hibernate Validator -->
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-validation</artifactId>
  61. </dependency>
  62. <!-- Jackson -->
  63. <dependency>
  64. <groupId>com.fasterxml.jackson.core</groupId>
  65. <artifactId>jackson-databind</artifactId>
  66. </dependency>
  67. <!-- Alibaba Fastjson -->
  68. <dependency>
  69. <groupId>com.alibaba.fastjson2</groupId>
  70. <artifactId>fastjson2</artifactId>
  71. </dependency>
  72. <!-- Jwt -->
  73. <dependency>
  74. <groupId>io.jsonwebtoken</groupId>
  75. <artifactId>jjwt</artifactId>
  76. </dependency>
  77. <!-- Jaxb -->
  78. <dependency>
  79. <groupId>javax.xml.bind</groupId>
  80. <artifactId>jaxb-api</artifactId>
  81. </dependency>
  82. <!-- Apache Lang3 -->
  83. <dependency>
  84. <groupId>org.apache.commons</groupId>
  85. <artifactId>commons-lang3</artifactId>
  86. </dependency>
  87. <!-- Commons Io -->
  88. <dependency>
  89. <groupId>commons-io</groupId>
  90. <artifactId>commons-io</artifactId>
  91. </dependency>
  92. <!-- Commons Fileupload -->
  93. <dependency>
  94. <groupId>commons-fileupload</groupId>
  95. <artifactId>commons-fileupload</artifactId>
  96. </dependency>
  97. <!-- excel工具 -->
  98. <dependency>
  99. <groupId>org.apache.poi</groupId>
  100. <artifactId>poi-ooxml</artifactId>
  101. </dependency>
  102. <!-- Java Servlet -->
  103. <dependency>
  104. <groupId>javax.servlet</groupId>
  105. <artifactId>javax.servlet-api</artifactId>
  106. </dependency>
  107. <!-- Swagger -->
  108. <dependency>
  109. <groupId>io.swagger</groupId>
  110. <artifactId>swagger-annotations</artifactId>
  111. </dependency>
  112. <!--zip4j依赖,解压zip压缩-->
  113. <dependency>
  114. <groupId>net.lingala.zip4j</groupId>
  115. <artifactId>zip4j</artifactId>
  116. <version>1.3.2</version>
  117. </dependency>
  118. <!-- 解压rar -->
  119. <dependency>
  120. <groupId>com.github.junrar</groupId>
  121. <artifactId>junrar</artifactId>
  122. <version>0.7</version>
  123. </dependency>
  124. </dependencies>
  125. </project>