123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410 |
- <?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.boot</groupId>
- <artifactId>qmth-boot</artifactId>
- <packaging>pom</packaging>
- <version>1.0.3</version>
- <modules>
- <module>starter-api</module>
- <module>tools-poi</module>
- <module>tools-signature</module>
- <module>tools-common</module>
- <module>tools-device</module>
- <module>data-redis</module>
- <module>data-mybatis-plus</module>
- <module>core-models</module>
- <module>core-concurrent</module>
- <module>core-uid</module>
- <module>core-metrics</module>
- <module>core-rate-limit</module>
- <module>core-security</module>
- <module>core-logging</module>
- <module>core-cache</module>
- <module>core-schedule</module>
- <module>core-fss</module>
- <module>core-solar</module>
- <module>core-retrofit</module>
- <module>core-sms</module>
- </modules>
- <name>qmth-boot</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>
- <springboot.version>2.3.7.RELEASE</springboot.version>
- <okhttp.version>3.14.9</okhttp.version>
- </properties>
- <dependencyManagement>
- <dependencies>
- <!-- inner modules -->
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>starter-api</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>tools-signature</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>tools-poi</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>tools-device</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>tools-common</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>core-security</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>core-uid</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>core-metrics</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>core-rate-limit</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>core-logging</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>core-models</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>core-concurrent</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>core-cache</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>core-schedule</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>core-fss</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>core-solar</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>core-retrofit</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>core-sms</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>data-redis</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.qmth.boot</groupId>
- <artifactId>data-mybatis-plus</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- spring modules -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- <version>${springboot.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot</artifactId>
- <version>${springboot.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-autoconfigure</artifactId>
- <version>${springboot.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-logging</artifactId>
- <version>${springboot.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-validation</artifactId>
- <version>${springboot.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-cache</artifactId>
- <version>${springboot.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-jdbc</artifactId>
- <version>${springboot.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-redis</artifactId>
- <version>${springboot.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-aop</artifactId>
- <version>${springboot.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <version>${springboot.version}</version>
- </dependency>
- <!-- thirdpart modules -->
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-lang3</artifactId>
- <version>3.11</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
- <dependency>
- <groupId>commons-codec</groupId>
- <artifactId>commons-codec</artifactId>
- <version>1.15</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core -->
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-core</artifactId>
- <version>2.11.3</version>
- </dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- <version>2.11.3</version>
- </dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.datatype</groupId>
- <artifactId>jackson-datatype-jsr310</artifactId>
- <version>2.11.3</version>
- </dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-annotations</artifactId>
- <version>2.11.3</version>
- </dependency>
- <dependency>
- <groupId>com.github.ben-manes.caffeine</groupId>
- <artifactId>caffeine</artifactId>
- <version>2.8.8</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.redisson/redisson -->
- <dependency>
- <groupId>org.redisson</groupId>
- <artifactId>redisson</artifactId>
- <version>3.15.0</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.redisson/redisson-spring-data-21 -->
- <dependency>
- <groupId>org.redisson</groupId>
- <artifactId>redisson-spring-data-21</artifactId>
- <version>3.15.0</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.baomidou/mybatis-plus-boot-starter -->
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-boot-starter</artifactId>
- <version>3.4.2</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi-ooxml</artifactId>
- <version>5.0.0</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <version>8.0.23</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.aliyun.oss/aliyun-sdk-oss -->
- <dependency>
- <groupId>com.aliyun.oss</groupId>
- <artifactId>aliyun-sdk-oss</artifactId>
- <version>3.12.0</version>
- </dependency>
- <dependency>
- <groupId>javax.xml.bind</groupId>
- <artifactId>jaxb-api</artifactId>
- <version>2.3.1</version>
- </dependency>
- <dependency>
- <groupId>javax.activation</groupId>
- <artifactId>activation</artifactId>
- <version>1.1.1</version>
- </dependency>
- <dependency>
- <groupId>org.glassfish.jaxb</groupId>
- <artifactId>jaxb-runtime</artifactId>
- <version>2.3.3</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.squareup.retrofit2/retrofit -->
- <dependency>
- <groupId>com.squareup.retrofit2</groupId>
- <artifactId>retrofit</artifactId>
- <version>2.9.0</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.squareup.retrofit2/converter-scalars -->
- <dependency>
- <groupId>com.squareup.retrofit2</groupId>
- <artifactId>converter-scalars</artifactId>
- <version>2.9.0</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.squareup.retrofit2/converter-jackson -->
- <dependency>
- <groupId>com.squareup.retrofit2</groupId>
- <artifactId>converter-jackson</artifactId>
- <version>2.9.0</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
- <dependency>
- <groupId>com.squareup.okhttp3</groupId>
- <artifactId>okhttp</artifactId>
- <version>${okhttp.version}</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/logging-interceptor -->
- <dependency>
- <groupId>com.squareup.okhttp3</groupId>
- <artifactId>logging-interceptor</artifactId>
- <version>${okhttp.version}</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.github.oshi/oshi-core -->
- <dependency>
- <groupId>com.github.oshi</groupId>
- <artifactId>oshi-core</artifactId>
- <version>5.8.2</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/net.java.dev.jna/jna -->
- <dependency>
- <groupId>net.java.dev.jna</groupId>
- <artifactId>jna</artifactId>
- <version>5.9.0</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/net.java.dev.jna/jna-platform -->
- <dependency>
- <groupId>net.java.dev.jna</groupId>
- <artifactId>jna-platform</artifactId>
- <version>5.9.0</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- <version>1.7.32</version>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.12</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <distributionManagement>
- <repository>
- <id>maven-releases</id>
- <name>maven-releases</name>
- <!-- 在以下的url中填写正确的maven仓库的地址-->
- <url>http://192.168.10.83:8083/repository/maven-releases/</url>
- </repository>
- <snapshotRepository>
- <id>maven-snapshots</id>
- <name>maven-snapshots</name>
- <!-- 在以下的url中填写正确的maven仓库的地址-->
- <url>http://192.168.10.83:8083/repository/maven-snapshots/</url>
- </snapshotRepository>
- </distributionManagement>
- <build>
- <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
- <plugins>
- <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
- <plugin>
- <artifactId>maven-clean-plugin</artifactId>
- <version>3.1.0</version>
- </plugin>
- <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
- <plugin>
- <artifactId>maven-resources-plugin</artifactId>
- <version>3.0.2</version>
- </plugin>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.8.0</version>
- </plugin>
- <plugin>
- <artifactId>maven-surefire-plugin</artifactId>
- <version>2.22.1</version>
- </plugin>
- <plugin>
- <artifactId>maven-jar-plugin</artifactId>
- <version>3.0.2</version>
- </plugin>
- <plugin>
- <artifactId>maven-install-plugin</artifactId>
- <version>2.5.2</version>
- </plugin>
- <plugin>
- <artifactId>maven-deploy-plugin</artifactId>
- <version>2.8.2</version>
- </plugin>
- <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
- <plugin>
- <artifactId>maven-site-plugin</artifactId>
- <version>3.7.1</version>
- </plugin>
- <plugin>
- <artifactId>maven-project-info-reports-plugin</artifactId>
- <version>3.0.0</version>
- </plugin>
- </plugins>
- </pluginManagement>
- </build>
- </project>
|