HslCommunication
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.dathlin</groupId> <artifactId>HslCommunication</artifactId> <version>3.9.0</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>io.github.dathlin</groupId> <artifactId>HslCommunication</artifactId> <version>3.9.0</version> <packaging>jar</packaging> <name>${project.groupId}:${project.artifactId}</name> <description>一个工业物联网的底层架构框架,专注于底层的技术通信及跨平台,跨语言通信功能,实现各种主流的PLC数据读写,实现modbus的各种协议读写等等</description> <url>https://github.com/dathlin/HslCommunication</url> <properties> <java.version>1.8</java.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <maven.compiler.source>${java.version}</maven.compiler.source> <maven.compiler.target>${java.version}</maven.compiler.target> <maven.compiler.encoding>UTF-8</maven.compiler.encoding> <serverId>central</serverId> </properties> <dependencies> <!-- ... --> </dependencies> <!-- 许可证信息 --> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <!-- SCM信息 -> git在github上托管 --> <scm> <connection>https://github.com/dathlin/HslCommunication</connection> <developerConnection>https://github.com/dathlin</developerConnection> <url>https://github.com/dathlin/HslCommunication</url> </scm> <!-- 开发者信息 --> <developers> <developer> <name>Richard.Hu</name> <email>hsl200909@163.com</email> <url>https://github.com/dathlin/HslCommunication</url> </developer> </developers> <distributionManagement> <snapshotRepository> <id>${serverId}</id> <!-- 等于上面Settings.xml中server的id值。--> <name>oss Snapshots Repository</name> <url>https://central.sonatype.com/</url> </snapshotRepository> </distributionManagement> <build> <sourceDirectory>src</sourceDirectory> <plugins> <!-- 必须配置 sonatype--> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.4.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <tokenAuth>true</tokenAuth> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>8</source> <target>8</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <addMavenDescriptor>false</addMavenDescriptor> </archive> </configuration> </plugin> <!-- 必须配置 source--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- 必须配置 javadoc--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </plugin> <!-- 必须配置 GPG--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>