pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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.3.1</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. <kingbase.version>8.6.0</kingbase.version>
  35. </properties>
  36. <modules>
  37. <module>ghjg-item-server</module>
  38. <module>ghjg-item-common</module>
  39. <module>ghjg-item-client</module>
  40. </modules>
  41. <dependencyManagement>
  42. <dependencies>
  43. <dependency>
  44. <groupId>org.apache.commons</groupId>
  45. <artifactId>commons-io</artifactId>
  46. <version>${commons-io.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.projectlombok</groupId>
  50. <artifactId>lombok</artifactId>
  51. <version>${lombok.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>cn.hutool</groupId>
  55. <artifactId>hutool-all</artifactId>
  56. <version>${cn.hutool.version}</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.github.ulisesbocchio</groupId>
  60. <artifactId>jasypt-spring-boot-starter</artifactId>
  61. <version>${jasypt.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.opencsv</groupId>
  65. <artifactId>opencsv</artifactId>
  66. <version>${opencsv.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.apache.httpcomponents</groupId>
  70. <artifactId>httpclient</artifactId>
  71. <version>${httpclient.version}</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.baomidou</groupId>
  75. <artifactId>mybatis-plus-boot-starter</artifactId>
  76. <version>${mybatis-plus.version}</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.alibaba</groupId>
  80. <artifactId>fastjson</artifactId>
  81. <version>${fastjson.version}</version>
  82. </dependency>
  83. <!-- <dependency>-->
  84. <!-- <groupId>com.oracle</groupId>-->
  85. <!-- <artifactId>ojdbc6</artifactId>-->
  86. <!-- <version>${ojdbc.version}</version>-->
  87. <!-- </dependency>-->
  88. <dependency>
  89. <groupId>cn.com.kingbase</groupId>
  90. <artifactId>kingbase8</artifactId>
  91. <version>${kingbase.version}</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>io.springfox</groupId>
  95. <artifactId>springfox-swagger2</artifactId>
  96. <version>${swagger2.version}</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>io.springfox</groupId>
  100. <artifactId>springfox-swagger-ui</artifactId>
  101. <version>${swagger2.version}</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>com.github.pagehelper</groupId>
  105. <artifactId>pagehelper-spring-boot-starter</artifactId>
  106. <version>${pagehelper.version}</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.apache.shiro</groupId>
  110. <artifactId>shiro-spring</artifactId>
  111. <version>${shiro.version}</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>io.jsonwebtoken</groupId>
  115. <artifactId>jjwt</artifactId>
  116. <version>${jsonweb.version}</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.apache.commons</groupId>
  120. <artifactId>commons-lang3</artifactId>
  121. <version>${commons-lang3.version}</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>com.alibaba</groupId>
  125. <artifactId>easyexcel</artifactId>
  126. <version>${easyExcel.version}</version>
  127. </dependency>
  128. </dependencies>
  129. </dependencyManagement>
  130. </project>