pom.xml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. </properties>
  27. <dependencies>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-web</artifactId>
  31. <version>${springboot.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.projectlombok</groupId>
  35. <artifactId>lombok</artifactId>
  36. <version>1.18.12</version>
  37. <optional>true</optional>
  38. </dependency>
  39. </dependencies>
  40. <dependencyManagement>
  41. <dependencies>
  42. <!--base-->
  43. <dependency>
  44. <groupId>com.poyee</groupId>
  45. <artifactId>py-base</artifactId>
  46. <version>${module.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.poyee</groupId>
  50. <artifactId>py-goods</artifactId>
  51. <version>${module.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.poyee</groupId>
  55. <artifactId>py-order</artifactId>
  56. <version>${module.version}</version>
  57. </dependency>
  58. </dependencies>
  59. </dependencyManagement>
  60. <modules>
  61. <module>py-starter</module>
  62. <module>py-base</module>
  63. <module>py-goods</module>
  64. <module>py-order</module>
  65. </modules>
  66. <build>
  67. <plugins>
  68. <plugin>
  69. <groupId>org.apache.maven.plugins</groupId>
  70. <artifactId>maven-compiler-plugin</artifactId>
  71. <version>3.1</version>
  72. <configuration>
  73. <source>${java.version}</source>
  74. <target>${java.version}</target>
  75. <encoding>${project.build.sourceEncoding}</encoding>
  76. </configuration>
  77. </plugin>
  78. </plugins>
  79. </build>
  80. </project>