pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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.ruoyi</groupId>
  7. <artifactId>ruoyi-common</artifactId>
  8. <version>0.4.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ruoyi-common-core</artifactId>
  12. <description>
  13. ruoyi-common-core核心模块
  14. </description>
  15. <dependencies>
  16. <!-- &lt;!&ndash; SpringCloud Openfeign &ndash;&gt;-->
  17. <!-- <dependency>-->
  18. <!-- <groupId>org.springframework.cloud</groupId>-->
  19. <!-- <artifactId>spring-cloud-starter-openfeign</artifactId>-->
  20. <!-- </dependency>-->
  21. <!-- SpringCloud Loadbalancer -->
  22. <dependency>
  23. <groupId>org.springframework.cloud</groupId>
  24. <artifactId>spring-cloud-starter-loadbalancer</artifactId>
  25. </dependency>
  26. <!-- Spring Context Support -->
  27. <dependency>
  28. <groupId>org.springframework</groupId>
  29. <artifactId>spring-context-support</artifactId>
  30. </dependency>
  31. <!-- Spring Web -->
  32. <dependency>
  33. <groupId>org.springframework</groupId>
  34. <artifactId>spring-web</artifactId>
  35. </dependency>
  36. <!-- Transmittable ThreadLocal -->
  37. <dependency>
  38. <groupId>com.alibaba</groupId>
  39. <artifactId>transmittable-thread-local</artifactId>
  40. </dependency>
  41. <!-- Pagehelper -->
  42. <dependency>
  43. <groupId>com.github.pagehelper</groupId>
  44. <artifactId>pagehelper-spring-boot-starter</artifactId>
  45. </dependency>
  46. <!-- Hibernate Validator -->
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-validation</artifactId>
  50. </dependency>
  51. <!-- Jackson -->
  52. <dependency>
  53. <groupId>com.fasterxml.jackson.core</groupId>
  54. <artifactId>jackson-databind</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.fasterxml.jackson.datatype</groupId>
  58. <artifactId>jackson-datatype-jsr310</artifactId>
  59. </dependency>
  60. <!-- Jaxb -->
  61. <dependency>
  62. <groupId>javax.xml.bind</groupId>
  63. <artifactId>jaxb-api</artifactId>
  64. </dependency>
  65. <!-- Apache Lang3 -->
  66. <dependency>
  67. <groupId>org.apache.commons</groupId>
  68. <artifactId>commons-lang3</artifactId>
  69. </dependency>
  70. <!-- Commons Io -->
  71. <dependency>
  72. <groupId>commons-io</groupId>
  73. <artifactId>commons-io</artifactId>
  74. </dependency>
  75. <!-- Commons Fileupload -->
  76. <dependency>
  77. <groupId>commons-fileupload</groupId>
  78. <artifactId>commons-fileupload</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>cglib</groupId>
  82. <artifactId>cglib</artifactId>
  83. </dependency>
  84. <!-- Java Servlet -->
  85. <dependency>
  86. <groupId>javax.servlet</groupId>
  87. <artifactId>javax.servlet-api</artifactId>
  88. </dependency>
  89. <!-- Swagger -->
  90. <dependency>
  91. <groupId>io.swagger</groupId>
  92. <artifactId>swagger-annotations</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.projectlombok</groupId>
  96. <artifactId>lombok</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>cn.hutool</groupId>
  100. <artifactId>hutool-core</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>cn.hutool</groupId>
  104. <artifactId>hutool-jwt</artifactId>
  105. </dependency>
  106. <dependency>
  107. <groupId>cn.hutool</groupId>
  108. <artifactId>hutool-http</artifactId>
  109. </dependency>
  110. <dependency>
  111. <groupId>cn.hutool</groupId>
  112. <artifactId>hutool-extra</artifactId>
  113. </dependency>
  114. <!-- 自动生成YML配置关联JSON文件 -->
  115. <dependency>
  116. <groupId>org.springframework.boot</groupId>
  117. <artifactId>spring-boot-configuration-processor</artifactId>
  118. </dependency>
  119. </dependencies>
  120. </project>