12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?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.qmth.demo</groupId>
- <artifactId>qmth-demo</artifactId>
- <version>1.0.6</version>
- </parent>
- <artifactId>api-demo</artifactId>
- <name>api-demo</name>
- <dependencies>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>starter-api</artifactId>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>data-redis</artifactId>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>data-mybatis-plus</artifactId>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>core-cache</artifactId>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>core-schedule</artifactId>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>core-fss</artifactId>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>core-concurrent</artifactId>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>core-uid</artifactId>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>core-solar</artifactId>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>core-sms</artifactId>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>core-ai</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <version>2.3.7.RELEASE</version>
- </plugin>
- </plugins>
- </build>
- </project>
|