SF-CSIM-EXPRESS-SDK
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.xuxiaowei.sf-express</groupId> <artifactId>SF-CSIM-EXPRESS-SDK</artifactId> <version>V2.1.7</version> </dependency>
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.xuxiaowei.sf-express</groupId> <artifactId>SF-CSIM-EXPRESS-SDK</artifactId> <version>V2.1.7</version> <name>SF-CSIM-EXPRESS-SDK</name> <description>顺风快递API-JAVA-SDK:此项目仅仅是将 顺风 SDK 上传至中央仓库,方便引入项目中使用</description> <url>https://github.com/xuxiaowei-io/sf-express</url> <licenses> <license/> </licenses> <developers> <developer/> </developers> <scm> <connection/> <developerConnection/> <tag/> <url/> </scm> <properties> <java.version>8</java.version> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version> <maven-source-plugin.version>3.3.1</maven-source-plugin.version> <maven-java-plugin.version>3.10.1</maven-java-plugin.version> <maven-gpg-plugin.version>3.2.7</maven-gpg-plugin.version> <git-commit-id-plugin.version>4.9.10</git-commit-id-plugin.version> <spring-javaformat-maven-plugin.version>0.0.43</spring-javaformat-maven-plugin.version> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-java-plugin.version}</version> </plugin> <plugin> <groupId>pl.project13.maven</groupId> <artifactId>git-commit-id-plugin</artifactId> <version>${git-commit-id-plugin.version}</version> <executions> <execution> <id>get-the-git-infos</id> <goals> <goal>revision</goal> </goals> </execution> </executions> <configuration> <generateGitPropertiesFile>true</generateGitPropertiesFile> <offline>true</offline> <!--<verbose>true</verbose>--> <dateFormatTimeZone>${user.timezone}</dateFormatTimeZone> <dateFormat>yyyy-MM-dd HH:mm:ss</dateFormat> <format>json</format> <generateGitPropertiesFilename>${project.build.outputDirectory}/git.json </generateGitPropertiesFilename> </configuration> </plugin> <plugin> <groupId>io.spring.javaformat</groupId> <artifactId>spring-javaformat-maven-plugin</artifactId> <version>${spring-javaformat-maven-plugin.version}</version> <executions> <execution> <phase>validate</phase> <inherited>true</inherited> <goals> <goal>validate</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <profiles> <profile> <!-- 使用 -Pgpg 激活此构建进行文件签名 --> <id>gpg</id> <build> <plugins> <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-gpg-plugin --> <!-- 安装:https://www.gpg4win.org/thanks-for-download.html --> <!-- 1、新建密钥对 2、生成密钥对副本 3、上传公钥至目录服务器(手动上传(需要验证邮箱):https://keys.openpgp.org/upload/) --> <!-- 单个文件签名: gpg --armor --detach-sign 文件名 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>