SocketDataHandler
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.naveenb2004</groupId> <artifactId>SocketDataHandler</artifactId> <version>1.2.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright 2024 Naveen Balasooriya ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <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.naveenb2004</groupId> <artifactId>SocketDataHandler</artifactId> <version>1.2.0</version> <name>SocketDataHandler</name> <description>Simple communication protocol for sockets!</description> <url>https://github.com/NaveenB2004/SocketDataHandler</url> <inceptionYear>2024</inceptionYear> <properties> <java.version>11</java.version> <maven.compiler.source>${java.version}</maven.compiler.source> <maven.compiler.target>${java.version}</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <gpg.key_name>B27FDD1CEE49FBA7CCE181AEEBF8807B75541CF9</gpg.key_name> </properties> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>NaveenB2004</id> <name>Naveen Balasooriya</name> <email>naveennbalasooriya2004@gmail.com</email> <url>https://github.com/NaveenB2004</url> <timezone>UTC+05:30</timezone> <properties> <!-- messenger platform --> <Telegram>https://t.me/NaveenB2004</Telegram> </properties> </developer> </developers> <scm> <connection>scm:git:https://github.com/NaveenB2004/SocketDataHandler.git</connection> <developerConnection>scm:git:https://github.com/NaveenB2004/SocketDataHandler.git</developerConnection> <url>https://github.com/NaveenB2004/SocketDataHandler</url> </scm> <issueManagement> <system>GitHub Issue Management</system> <url>https://github.com/NaveenB2004/SocketDataHandler/issues</url> </issueManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.3</version> <executions> <execution> <id>attach-javadocs</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <keyname>${gpg.key_name}</keyname> </configuration> </execution> </executions> </plugin> <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> <deploymentName>Deployment-${project.version}</deploymentName> <autoPublish>false</autoPublish> </configuration> </plugin> </plugins> </build> </project>