pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>3.5.6</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.poyee</groupId>
  12. <artifactId>poyee-micro</artifactId>
  13. <version>1.0.0</version>
  14. <packaging>pom</packaging>
  15. <name>poyee-micro</name>
  16. <modules>
  17. <module>micro-common</module>
  18. <module>micro-dao</module>
  19. <module>micro-manager</module>
  20. <module>micro-service</module>
  21. <module>web-controller</module>
  22. </modules>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-web</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-test</artifactId>
  31. <scope>test</scope>
  32. </dependency>
  33. </dependencies>
  34. <build>
  35. <plugins>
  36. <plugin>
  37. <groupId>org.apache.maven.plugins</groupId>
  38. <artifactId>maven-compiler-plugin</artifactId>
  39. <version>3.1</version>
  40. </plugin>
  41. </plugins>
  42. </build>
  43. <repositories>
  44. <repository>
  45. <id>public</id>
  46. <name>aliyun nexus</name>
  47. <url>https://maven.aliyun.com/repository/public</url>
  48. <releases>
  49. <enabled>true</enabled>
  50. </releases>
  51. </repository>
  52. <repository>
  53. <id>zto-maven</id>
  54. <url>https://dl.bintray.com/chocotan/maven</url>
  55. </repository>
  56. </repositories>
  57. <pluginRepositories>
  58. <pluginRepository>
  59. <id>public</id>
  60. <name>aliyun nexus</name>
  61. <url>https://maven.aliyun.com/repository/public</url>
  62. <releases>
  63. <enabled>true</enabled>
  64. </releases>
  65. <snapshots>
  66. <enabled>false</enabled>
  67. </snapshots>
  68. </pluginRepository>
  69. </pluginRepositories>
  70. </project>