.flattened-pom.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.jeesharp.boot</groupId>
  7. <artifactId>business-member</artifactId>
  8. <version>3.0.1-Beta-21</version>
  9. </parent>
  10. <groupId>org.jeesharp.boot</groupId>
  11. <artifactId>business-member-controller</artifactId>
  12. <version>3.0.1-Beta-21</version>
  13. <name>business-member-controller</name>
  14. <description>会员管理模块 - Controller层(控制器)</description>
  15. <properties>
  16. <maven.compiler.target>21</maven.compiler.target>
  17. <maven.compiler.source>21</maven.compiler.source>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.jeesharp.boot</groupId>
  23. <artifactId>business-member-bean</artifactId>
  24. <version>${project.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.jeesharp.boot</groupId>
  28. <artifactId>business-member-application</artifactId>
  29. <version>${project.version}</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.jeesharp.boot</groupId>
  33. <artifactId>jeesharp-spring-boot-starter-web</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.jeesharp.boot</groupId>
  37. <artifactId>jeesharp-spring-boot-starter-office</artifactId>
  38. </dependency>
  39. </dependencies>
  40. </project>