pom.xml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  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.xinghuacuntravel</groupId>
  8. <artifactId>business-site-setting</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>business-site-setting-service</artifactId>
  12. <name>business-site-setting-service</name>
  13. <description>站点设置模块 - Service层(Service、Mapper)</description>
  14. <properties>
  15. <maven.compiler.source>21</maven.compiler.source>
  16. <maven.compiler.target>21</maven.compiler.target>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.jeesharp.boot</groupId>
  22. <artifactId>jeesharp-spring-boot-starter-mybatis</artifactId>
  23. </dependency>
  24. <!-- Bean 模块依赖 -->
  25. <dependency>
  26. <groupId>com.xinghuacuntravel</groupId>
  27. <artifactId>business-site-setting-bean</artifactId>
  28. <version>${project.version}</version>
  29. </dependency>
  30. </dependencies>
  31. </project>