pom.xml 5.4 KB

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