| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- 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>
- <parent>
- <groupId>com.sckw</groupId>
- <artifactId>sckw-service-platform</artifactId>
- <version>1.0.0</version>
- </parent>
- <artifactId>sckw-modules</artifactId>
- <packaging>pom</packaging>
- <version>1.0.0</version>
- <description>业务模块</description>
- <modules>
- <module>sckw-system</module>
- <module>sckw-message</module>
- <module>sckw-example</module>
- <module>sckw-file</module>
- <module>sckw-product</module>
- <module>sckw-order</module>
- </modules>
- <properties>
- <maven.compiler.source>17</maven.compiler.source>
- <maven.compiler.target>17</maven.compiler.target>
- </properties>
- <dependencies>
- <!--web-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <!--注册中心客户端-->
- <dependency>
- <groupId>com.alibaba.cloud</groupId>
- <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
- </dependency>
- <!--配置中心客户端-->
- <dependency>
- <groupId>com.alibaba.cloud</groupId>
- <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-bootstrap</artifactId>
- </dependency>
- <dependency>
- <groupId>com.sckw</groupId>
- <artifactId>sckw-common-remote</artifactId>
- <version>1.0.0</version>
- </dependency>
- </dependencies>
- </project>
|