smms-java-sdk
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.yazhuo-wyze</groupId>
<artifactId>smms-java-sdk</artifactId>
<version>1.0.9</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>io.github.yazhuo-wyze</groupId>
<artifactId>smms-java-sdk</artifactId>
<version>1.0.9</version>
<name>smms-java-sdk</name>
<description>
Add a java sdk for use https://sm.ms
Api doc : https://doc.sm.ms/
This is a blueprint website, and we have encapsulated a user-friendly Java SDK.
</description>
<url>https://doc.sm.ms/</url>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>yazhuo</name>
<email>dongyazhuo@hotmail.com</email>
<organization>yazhuo</organization>
<organizationUrl>https://github.com/yazhuo-wyze</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:yazhuo-wyze/smms-java-sdk.git</connection>
<developerConnection>scm:git@github.com:yazhuo-wyze/smms-java-sdk.git</developerConnection>
<url>https://github.com/yazhuo-wyze/smms-java-sdk/tree/main</url>
</scm>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<distributionManagement>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/releases/</url>
</repository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-http</artifactId>
<version>5.8.22</version>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-json</artifactId>
<version>5.8.22</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!--配置生成Javadoc包-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<configuration>
<encoding>UTF-8</encoding>
<aggregate>true</aggregate>
<charset>UTF-8</charset>
<docencoding>UTF-8</docencoding>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>