pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.3.5.RELEASE</version>
  10. </parent>
  11. <groupId>com.poyee</groupId>
  12. <artifactId>tzy-admin</artifactId>
  13. <version>1.0-SNAPSHOT</version>
  14. <packaging>pom</packaging>
  15. <name>tzy-admin</name>
  16. <description>拍卖管理系统</description>
  17. <properties>
  18. <module.version>1.0-SNAPSHOT</module.version>
  19. <java.version>1.8</java.version>
  20. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  21. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  22. <springboot.version>2.3.5.RELEASE</springboot.version>
  23. <druid.version>1.2.1</druid.version>
  24. <commons.io.version>2.5</commons.io.version>
  25. <fastjson.version>1.2.74</fastjson.version>
  26. <qcloud.version>5.6.257</qcloud.version>
  27. </properties>
  28. <dependencies>
  29. <dependency>
  30. <groupId>com.qcloud</groupId>
  31. <artifactId>cos_api</artifactId>
  32. <version>${qcloud.version}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-web</artifactId>
  37. <version>${springboot.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.projectlombok</groupId>
  41. <artifactId>lombok</artifactId>
  42. <version>1.18.12</version>
  43. <optional>true</optional>
  44. </dependency>
  45. </dependencies>
  46. <dependencyManagement>
  47. <dependencies>
  48. <!--base-->
  49. <dependency>
  50. <groupId>com.poyee</groupId>
  51. <artifactId>py-base</artifactId>
  52. <version>${module.version}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.poyee</groupId>
  56. <artifactId>py-goods</artifactId>
  57. <version>${module.version}</version>
  58. </dependency>
  59. <!-- 订单管理-->
  60. <dependency>
  61. <groupId>com.poyee</groupId>
  62. <artifactId>py-order</artifactId>
  63. <version>${module.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.poyee</groupId>
  67. <artifactId>py-account</artifactId>
  68. <version>${module.version}</version>
  69. </dependency>
  70. </dependencies>
  71. </dependencyManagement>
  72. <modules>
  73. <module>py-starter</module>
  74. <module>py-base</module>
  75. <module>py-goods</module>
  76. <module>py-order</module>
  77. <module>py-account</module>
  78. </modules>
  79. <build>
  80. <plugins>
  81. <plugin>
  82. <groupId>org.apache.maven.plugins</groupId>
  83. <artifactId>maven-compiler-plugin</artifactId>
  84. <version>3.1</version>
  85. <configuration>
  86. <source>${java.version}</source>
  87. <target>${java.version}</target>
  88. <encoding>${project.build.sourceEncoding}</encoding>
  89. </configuration>
  90. </plugin>
  91. </plugins>
  92. </build>
  93. </project>