pom.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  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>com.kym</groupId>
  8. <artifactId>charge</artifactId>
  9. <version>0.0.1-SNAPSHOT</version>
  10. </parent>
  11. <groupId>org.kym</groupId>
  12. <artifactId>admin</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.kym</groupId>
  16. <artifactId>service</artifactId>
  17. <version>0.0.1-SNAPSHOT</version>
  18. </dependency>
  19. </dependencies>
  20. <properties>
  21. <maven.compiler.source>17</maven.compiler.source>
  22. <maven.compiler.target>17</maven.compiler.target>
  23. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  24. </properties>
  25. <build>
  26. <plugins>
  27. <plugin>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-maven-plugin</artifactId>
  30. <configuration>
  31. <excludes>
  32. <exclude>
  33. <groupId>org.projectlombok</groupId>
  34. <artifactId>lombok</artifactId>
  35. </exclude>
  36. </excludes>
  37. </configuration>
  38. </plugin>
  39. <plugin>
  40. <groupId>org.mybatis.generator</groupId>
  41. <artifactId>mybatis-generator-maven-plugin</artifactId>
  42. <version>1.4.2</version>
  43. </plugin>
  44. </plugins>
  45. </build>
  46. </project>