| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- <?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>
- <artifactId>sckw-modules</artifactId>
- <groupId>com.sckw</groupId>
- <version>1.0.0</version>
- </parent>
- <artifactId>sckw-example</artifactId>
- <version>1.0.0</version>
- <description>示例</description>
- <properties>
- <maven.compiler.source>17</maven.compiler.source>
- <maven.compiler.target>17</maven.compiler.target>
- <maven.compiler.compilerVersion>17</maven.compiler.compilerVersion>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.sckw</groupId>
- <artifactId>sckw-file</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.sckw</groupId>
- <artifactId>sckw-common-core</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.sckw</groupId>
- <artifactId>sckw-common-datasource</artifactId>
- <version>1.0.0</version>
- </dependency>
- <!--<dependency>
- <groupId>com.sckw</groupId>
- <artifactId>sckw-common-elasticsearch</artifactId>
- <version>1.0.0</version>
- </dependency>-->
- <dependency>
- <groupId>com.sckw</groupId>
- <artifactId>sckw-common-elasticsearch</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.sckw</groupId>
- <artifactId>sckw-common-xxl-job</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.sckw</groupId>
- <artifactId>sckw-common-excel</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.sckw</groupId>
- <artifactId>sckw-common-redis</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.sckw</groupId>
- <artifactId>sckw-system-api</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.sckw</groupId>
- <artifactId>sckw-file-api</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.sckw</groupId>
- <artifactId>sckw-common-stream</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.sckw</groupId>
- <artifactId>sckw-common-mongo</artifactId>
- <version>1.0.0</version>
- </dependency>
- <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-message-api</artifactId>
- <version>1.0.0</version>
- <scope>compile</scope>
- </dependency>
- </dependencies>
- <build>
- <resources>
- <resource>
- <directory>src/main/java</directory>
- <includes>
- <include>**/*.xml</include>
- </includes>
- <filtering>true</filtering>
- </resource>
- </resources>
- </build>
- </project>
|