pom.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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>charge</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <packaging>pom</packaging>
  15. <name>charge</name>
  16. <description>charge-admin</description>
  17. <modules>
  18. <module>admin</module>
  19. <module>entity</module>
  20. <module>common</module>
  21. <module>miniapp</module>
  22. <module>service</module>
  23. <module>mapper</module>
  24. </modules>
  25. <properties>
  26. <java.version>17</java.version>
  27. </properties>
  28. <dependencies>
  29. </dependencies>
  30. <build>
  31. <plugins>
  32. <!-- <plugin>-->
  33. <!-- <groupId>org.springframework.boot</groupId>-->
  34. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  35. <!-- <configuration>-->
  36. <!-- <excludes>-->
  37. <!-- <exclude>-->
  38. <!-- <groupId>org.projectlombok</groupId>-->
  39. <!-- <artifactId>lombok</artifactId>-->
  40. <!-- </exclude>-->
  41. <!-- </excludes>-->
  42. <!-- </configuration>-->
  43. <!-- </plugin>-->
  44. <plugin>
  45. <groupId>org.mybatis.generator</groupId>
  46. <artifactId>mybatis-generator-maven-plugin</artifactId>
  47. <version>1.4.2</version>
  48. </plugin>
  49. </plugins>
  50. </build>
  51. </project>