pom.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. <groupId>com.sd</groupId>
  7. <artifactId>sd_sell</artifactId>
  8. <version>3.0</version>
  9. <packaging>pom</packaging>
  10. <properties>
  11. <maven.compiler.source>8</maven.compiler.source>
  12. <maven.compiler.target>8</maven.compiler.target>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <sd.version>3.0</sd.version>
  15. <base.version>1.0.3</base.version>
  16. </properties>
  17. <modules>
  18. <module>sd-starter</module>
  19. <module>sd-framework</module>
  20. <module>sd-business</module>
  21. <module>code-generation</module>
  22. <module>sd-mq</module>
  23. </modules>
  24. <parent>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-parent</artifactId>
  27. <version>2.7.6</version>
  28. </parent>
  29. <!-- 依赖声明 -->
  30. <dependencyManagement>
  31. <dependencies>
  32. <dependency>
  33. <groupId>com.fjhx</groupId>
  34. <artifactId>hx-base</artifactId>
  35. <version>${base.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.sd</groupId>
  39. <artifactId>sd-framework</artifactId>
  40. <version>${sd.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.sd</groupId>
  44. <artifactId>sd-business</artifactId>
  45. <version>${sd.version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.sd</groupId>
  49. <artifactId>sd-mq</artifactId>
  50. <version>${sd.version}</version>
  51. </dependency>
  52. </dependencies>
  53. </dependencyManagement>
  54. </project>