1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns="http://maven.apache.org/POM/4.0.0"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.sd</groupId>
- <artifactId>shdy_project</artifactId>
- <version>2.0</version>
- <packaging>pom</packaging>
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <sd.version>2.0</sd.version>
- <base.version>1.0.3</base.version>
- </properties>
- <modules>
- <module>sd-starter</module>
- <module>sd-framework</module>
- <module>sd-business</module>
- <module>code-generation</module>
- <module>sd-wln</module>
- <module>sd-vision</module>
- <module>sd-mq</module>
- </modules>
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>2.7.6</version>
- </parent>
- <!-- 依赖声明 -->
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>com.fjhx</groupId>
- <artifactId>hx-base</artifactId>
- <version>${base.version}</version>
- </dependency>
- <dependency>
- <groupId>com.fjhx</groupId>
- <artifactId>hx-flow</artifactId>
- <version>${base.version}</version>
- </dependency>
- <dependency>
- <groupId>com.sd</groupId>
- <artifactId>sd-framework</artifactId>
- <version>${sd.version}</version>
- </dependency>
- <dependency>
- <groupId>com.sd</groupId>
- <artifactId>sd-business</artifactId>
- <version>${sd.version}</version>
- </dependency>
- <dependency>
- <groupId>com.sd</groupId>
- <artifactId>sd-wln</artifactId>
- <version>${sd.version}</version>
- </dependency>
- <dependency>
- <groupId>com.sd</groupId>
- <artifactId>sd-vision</artifactId>
- <version>${sd.version}</version>
- </dependency>
- <dependency>
- <groupId>com.sd</groupId>
- <artifactId>sd-mq</artifactId>
- <version>${sd.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- </project>
|