WeComRobotSDK
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>cn.hamm.wecom</groupId> <artifactId>WeComRobotSDK</artifactId> <version>1.0.5</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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>cn.hamm.wecom</groupId> <artifactId>WeComRobotSDK</artifactId> <version>1.0.5</version> <description>The Java SDK for WeCom Robot</description> <properties> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.17.2</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.5.14</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpmime</artifactId> <version>4.5.14</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.5.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <autoPublish>true</autoPublish> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.8.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <doclint>none</doclint> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <keyname>5FE4833A28EDA3991EA4F1D239A8BA7AF33610A8</keyname> </configuration> </execution> </executions> </plugin> </plugins> </build> <licenses> <license> <name>The MIT License</name> <url>https://raw.githubusercontent.com/HammCn/WeComRobotSDK/main/LICENSE</url> <distribution>repo</distribution> </license> </licenses> <url>https://github.com/HammCn/WeComRobotSDK</url> <scm> <connection>scm:git:git://github.com/HammCn/WeComRobotSDK.git</connection> <developerConnection>scm:git:git://github.com/HammCn/WeComRobotSDK.git</developerConnection> <url>https://github.com/HammCn/WeComRobotSDK</url> <tag>HEAD</tag> </scm> <developers> <developer> <id>hammcn</id> <name>Hamm</name> <email>admin@hamm.cn</email> <roles> <role>developer</role> </roles> <timezone>+8</timezone> <properties> <picUrl>https://avatars.githubusercontent.com/u/16929327</picUrl> </properties> </developer> </developers> </project>