pom.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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.1.1</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.kym</groupId>
  12. <artifactId>car-wash</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <packaging>pom</packaging>
  15. <name>car-wash</name>
  16. <description>charge-admin</description>
  17. <modules>
  18. <module>car-wash-admin</module>
  19. <module>car-wash-entity</module>
  20. <module>car-wash-common</module>
  21. <module>car-wash-miniapp</module>
  22. <module>car-wash-service</module>
  23. <module>car-wash-mapper</module>
  24. </modules>
  25. <properties>
  26. <java.version>17</java.version>
  27. </properties>
  28. <dependencies>
  29. <dependency>
  30. <groupId>org.projectlombok</groupId>
  31. <artifactId>lombok</artifactId>
  32. <optional>true</optional>
  33. </dependency>
  34. </dependencies>
  35. <repositories>
  36. <repository>
  37. <id>aliyun</id>
  38. <url>https://maven.aliyun.com/repository/central/</url>
  39. <releases>
  40. <enabled>true</enabled>
  41. </releases>
  42. <snapshots>
  43. <enabled>true</enabled>
  44. </snapshots>
  45. </repository>
  46. </repositories>
  47. <build>
  48. <pluginManagement>
  49. <plugins>
  50. <plugin>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-maven-plugin</artifactId>
  53. </plugin>
  54. </plugins>
  55. </pluginManagement>
  56. </build>
  57. </project>