pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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. <groupId>cn.hobbystocks</groupId>
  7. <artifactId>auction</artifactId>
  8. <version>0.1.0</version>
  9. <name>auction</name>
  10. <properties>
  11. <hobbystocks.version>0.1.0</hobbystocks.version>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  14. <java.version>1.8</java.version>
  15. <druid.version>1.2.27</druid.version>
  16. <swagger.version>3.0.0</swagger.version>
  17. <mybatis-plus-spring-boot.version>3.5.14</mybatis-plus-spring-boot.version>
  18. <pagehelper.boot.version>2.1.1</pagehelper.boot.version>
  19. <fastjson.version>1.2.83</fastjson.version>
  20. <commons.lang3.version>3.19.0</commons.lang3.version>
  21. <commons.io.version>2.19.0</commons.io.version>
  22. <commons.collections.version>4.5.0</commons.collections.version>
  23. <httpclient.version>4.5.14</httpclient.version>
  24. <guava.version>33.3.1-jre</guava.version>
  25. </properties>
  26. <!-- 依赖声明 -->
  27. <dependencyManagement>
  28. <dependencies>
  29. <!-- SpringBoot的依赖配置 -->
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-dependencies</artifactId>
  33. <version>2.5.15</version>
  34. <type>pom</type>
  35. <scope>import</scope>
  36. </dependency>
  37. <!-- 阿里数据库连接池 -->
  38. <dependency>
  39. <groupId>com.alibaba</groupId>
  40. <artifactId>druid-spring-boot-starter</artifactId>
  41. <version>${druid.version}</version>
  42. </dependency>
  43. <!-- SpringBoot集成mybatis-plus框架 -->
  44. <dependency>
  45. <groupId>com.baomidou</groupId>
  46. <artifactId>mybatis-plus-boot-starter</artifactId>
  47. <version>${mybatis-plus-spring-boot.version}</version>
  48. </dependency>
  49. <!-- pagehelper 分页插件 -->
  50. <dependency>
  51. <groupId>com.github.pagehelper</groupId>
  52. <artifactId>pagehelper-spring-boot-starter</artifactId>
  53. <version>${pagehelper.boot.version}</version>
  54. </dependency>
  55. <!-- Swagger3依赖 -->
  56. <dependency>
  57. <groupId>io.springfox</groupId>
  58. <artifactId>springfox-boot-starter</artifactId>
  59. <version>${swagger.version}</version>
  60. <exclusions>
  61. <exclusion>
  62. <groupId>io.swagger</groupId>
  63. <artifactId>swagger-models</artifactId>
  64. </exclusion>
  65. </exclusions>
  66. </dependency>
  67. <!-- io常用工具类 -->
  68. <dependency>
  69. <groupId>commons-io</groupId>
  70. <artifactId>commons-io</artifactId>
  71. <version>${commons.io.version}</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.apache.commons</groupId>
  75. <artifactId>commons-lang3</artifactId>
  76. <version>${commons.lang3.version}</version>
  77. </dependency>
  78. <!-- collections工具类 -->
  79. <dependency>
  80. <groupId>commons-collections</groupId>
  81. <artifactId>commons-collections4</artifactId>
  82. <version>${commons.collections.version}</version>
  83. </dependency>
  84. <!-- 阿里JSON解析器 -->
  85. <dependency>
  86. <groupId>com.alibaba</groupId>
  87. <artifactId>fastjson</artifactId>
  88. <version>${fastjson.version}</version>
  89. </dependency>
  90. <!-- 拍卖模块 -->
  91. <dependency>
  92. <groupId>cn.hobbystocks</groupId>
  93. <artifactId>lot</artifactId>
  94. <version>${hobbystocks.version}</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.apache.httpcomponents</groupId>
  98. <artifactId>httpclient</artifactId>
  99. <version>${httpclient.version}</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.google.guava</groupId>
  103. <artifactId>guava</artifactId>
  104. <version>${guava.version}</version>
  105. </dependency>
  106. </dependencies>
  107. </dependencyManagement>
  108. <modules>
  109. <module>auc</module>
  110. <module>lot</module>
  111. <module>bid</module>
  112. </modules>
  113. <packaging>pom</packaging>
  114. <dependencies>
  115. </dependencies>
  116. <build>
  117. <plugins>
  118. <plugin>
  119. <groupId>org.apache.maven.plugins</groupId>
  120. <artifactId>maven-compiler-plugin</artifactId>
  121. <version>3.13.0</version>
  122. <configuration>
  123. <source>${java.version}</source>
  124. <target>${java.version}</target>
  125. <encoding>${project.build.sourceEncoding}</encoding>
  126. </configuration>
  127. </plugin>
  128. </plugins>
  129. </build>
  130. </project>