pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.3.7.RELEASE</version>
  10. </parent>
  11. <packaging>pom</packaging>
  12. <groupId>com.shanghaichengdi</groupId>
  13. <artifactId>ghjg-item</artifactId>
  14. <version>1.0-SNAPSHOT</version>
  15. <properties>
  16. <maven.compiler.source>8</maven.compiler.source>
  17. <maven.compiler.target>8</maven.compiler.target>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <commons-io.version>1.3.2</commons-io.version>
  20. <lombok.version>1.18.16</lombok.version>
  21. <cn.hutool.version>5.5.2</cn.hutool.version>
  22. <jasypt.version>2.1.0</jasypt.version>
  23. <opencsv.version>4.0</opencsv.version>
  24. <httpclient.version>4.5.13</httpclient.version>
  25. <mybatis-plus.version>3.4.1</mybatis-plus.version>
  26. <fastjson.version>1.2.83</fastjson.version>
  27. <ojdbc.version>11.2.0.3</ojdbc.version>
  28. <swagger2.version>2.9.2</swagger2.version>
  29. <pagehelper.version>1.2.13</pagehelper.version>
  30. <shiro.version>1.4.0</shiro.version>
  31. <jsonweb.version>0.9.1</jsonweb.version>
  32. <commons-lang3.version>3.4</commons-lang3.version>
  33. <easyExcel.version>3.0.2</easyExcel.version>
  34. </properties>
  35. <modules>
  36. <module>ghjg-item-server</module>
  37. <module>ghjg-item-common</module>
  38. <module>ghjg-item-client</module>
  39. </modules>
  40. <dependencyManagement>
  41. <dependencies>
  42. <dependency>
  43. <groupId>org.apache.commons</groupId>
  44. <artifactId>commons-io</artifactId>
  45. <version>${commons-io.version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.projectlombok</groupId>
  49. <artifactId>lombok</artifactId>
  50. <version>${lombok.version}</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>cn.hutool</groupId>
  54. <artifactId>hutool-all</artifactId>
  55. <version>${cn.hutool.version}</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.github.ulisesbocchio</groupId>
  59. <artifactId>jasypt-spring-boot-starter</artifactId>
  60. <version>${jasypt.version}</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.opencsv</groupId>
  64. <artifactId>opencsv</artifactId>
  65. <version>${opencsv.version}</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.apache.httpcomponents</groupId>
  69. <artifactId>httpclient</artifactId>
  70. <version>${httpclient.version}</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.baomidou</groupId>
  74. <artifactId>mybatis-plus-boot-starter</artifactId>
  75. <version>${mybatis-plus.version}</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.alibaba</groupId>
  79. <artifactId>fastjson</artifactId>
  80. <version>${fastjson.version}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.oracle</groupId>
  84. <artifactId>ojdbc6</artifactId>
  85. <version>${ojdbc.version}</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>io.springfox</groupId>
  89. <artifactId>springfox-swagger2</artifactId>
  90. <version>${swagger2.version}</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>io.springfox</groupId>
  94. <artifactId>springfox-swagger-ui</artifactId>
  95. <version>${swagger2.version}</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.github.pagehelper</groupId>
  99. <artifactId>pagehelper-spring-boot-starter</artifactId>
  100. <version>${pagehelper.version}</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.apache.shiro</groupId>
  104. <artifactId>shiro-spring</artifactId>
  105. <version>${shiro.version}</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>io.jsonwebtoken</groupId>
  109. <artifactId>jjwt</artifactId>
  110. <version>${jsonweb.version}</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.apache.commons</groupId>
  114. <artifactId>commons-lang3</artifactId>
  115. <version>${commons-lang3.version}</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>com.alibaba</groupId>
  119. <artifactId>easyexcel</artifactId>
  120. <version>${easyExcel.version}</version>
  121. </dependency>
  122. </dependencies>
  123. </dependencyManagement>
  124. </project>