15
0

pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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>poyee-ecology</artifactId>
  13. <version>1.0-SNAPSHOT</version>
  14. <packaging>pom</packaging>
  15. <name>ecology</name>
  16. <description>生态购2.0</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. <dependency>
  43. <groupId>org.springframework.cloud</groupId>
  44. <artifactId>spring-cloud-dependencies</artifactId>
  45. <version>Hoxton.SR8</version>
  46. <type>pom</type>
  47. <scope>import</scope>
  48. </dependency>
  49. <!--base-->
  50. <dependency>
  51. <groupId>com.poyee</groupId>
  52. <artifactId>py-base</artifactId>
  53. <version>${module.version}</version>
  54. </dependency>
  55. <!--domain-->
  56. <dependency>
  57. <groupId>com.poyee</groupId>
  58. <artifactId>py-domain</artifactId>
  59. <version>${module.version}</version>
  60. </dependency>
  61. <!--dao-->
  62. <dependency>
  63. <groupId>com.poyee</groupId>
  64. <artifactId>py-dao</artifactId>
  65. <version>${module.version}</version>
  66. </dependency>
  67. <!--service-->
  68. <dependency>
  69. <groupId>com.poyee</groupId>
  70. <artifactId>py-service</artifactId>
  71. <version>${module.version}</version>
  72. </dependency>
  73. <!--feign-->
  74. <dependency>
  75. <groupId>com.poyee</groupId>
  76. <artifactId>py-feign-clients</artifactId>
  77. <version>${module.version}</version>
  78. </dependency>
  79. </dependencies>
  80. </dependencyManagement>
  81. <modules>
  82. <module>py-base</module>
  83. <module>py-domain</module>
  84. <module>py-service</module>
  85. <module>py-starter</module>
  86. <module>py-app-starter</module>
  87. <module>py-dao</module>
  88. <module>py-feign-clients</module>
  89. </modules>
  90. <build>
  91. <plugins>
  92. <plugin>
  93. <groupId>org.apache.maven.plugins</groupId>
  94. <artifactId>maven-compiler-plugin</artifactId>
  95. <version>3.1</version>
  96. <configuration>
  97. <source>${java.version}</source>
  98. <target>${java.version}</target>
  99. <encoding>${project.build.sourceEncoding}</encoding>
  100. </configuration>
  101. </plugin>
  102. </plugins>
  103. </build>
  104. </project>