|
@@ -0,0 +1,119 @@
|
|
|
|
+<?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>
|
|
|
|
+ <groupId>com.qmth.ops</groupId>
|
|
|
|
+ <artifactId>ops-api</artifactId>
|
|
|
|
+ <packaging>jar</packaging>
|
|
|
|
+ <version>1.0.0</version>
|
|
|
|
+ <name>solar-api</name>
|
|
|
|
+
|
|
|
|
+ <properties>
|
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
+ <maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
+ <maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
+ <qmth.boot.version>1.0.3</qmth.boot.version>
|
|
|
|
+ </properties>
|
|
|
|
+
|
|
|
|
+ <!--
|
|
|
|
+ <parent>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
+ <version>2.3.7.RELEASE</version>
|
|
|
|
+ <relativePath/>
|
|
|
|
+ </parent>
|
|
|
|
+ -->
|
|
|
|
+
|
|
|
|
+ <dependencies>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.qmth.boot</groupId>
|
|
|
|
+ <artifactId>starter-api</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.qmth.boot</groupId>
|
|
|
|
+ <artifactId>data-mybatis-plus</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.qmth.boot</groupId>
|
|
|
|
+ <artifactId>core-fss</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>junit</groupId>
|
|
|
|
+ <artifactId>junit</artifactId>
|
|
|
|
+ <scope>test</scope>
|
|
|
|
+ </dependency>
|
|
|
|
+ </dependencies>
|
|
|
|
+
|
|
|
|
+ <dependencyManagement>
|
|
|
|
+ <dependencies>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.qmth.boot</groupId>
|
|
|
|
+ <artifactId>starter-api</artifactId>
|
|
|
|
+ <version>${qmth.boot.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.qmth.boot</groupId>
|
|
|
|
+ <artifactId>data-redis</artifactId>
|
|
|
|
+ <version>${qmth.boot.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.qmth.boot</groupId>
|
|
|
|
+ <artifactId>data-mybatis-plus</artifactId>
|
|
|
|
+ <version>${qmth.boot.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.qmth.boot</groupId>
|
|
|
|
+ <artifactId>core-uid</artifactId>
|
|
|
|
+ <version>${qmth.boot.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.qmth.boot</groupId>
|
|
|
|
+ <artifactId>core-cache</artifactId>
|
|
|
|
+ <version>${qmth.boot.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.qmth.boot</groupId>
|
|
|
|
+ <artifactId>core-concurrent</artifactId>
|
|
|
|
+ <version>${qmth.boot.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.qmth.boot</groupId>
|
|
|
|
+ <artifactId>core-fss</artifactId>
|
|
|
|
+ <version>${qmth.boot.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.qmth.boot</groupId>
|
|
|
|
+ <artifactId>core-solar</artifactId>
|
|
|
|
+ <version>${qmth.boot.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.qmth.boot</groupId>
|
|
|
|
+ <artifactId>core-retrofit</artifactId>
|
|
|
|
+ <version>${qmth.boot.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.qmth.boot</groupId>
|
|
|
|
+ <artifactId>core-sms</artifactId>
|
|
|
|
+ <version>${qmth.boot.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>junit</groupId>
|
|
|
|
+ <artifactId>junit</artifactId>
|
|
|
|
+ <version>4.11</version>
|
|
|
|
+ <scope>test</scope>
|
|
|
|
+ </dependency>
|
|
|
|
+ </dependencies>
|
|
|
|
+ </dependencyManagement>
|
|
|
|
+
|
|
|
|
+ <build>
|
|
|
|
+ <plugins>
|
|
|
|
+ <plugin>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
+ <version>2.3.7.RELEASE</version>
|
|
|
|
+ </plugin>
|
|
|
|
+ </plugins>
|
|
|
|
+ </build>
|
|
|
|
+
|
|
|
|
+</project>
|