packetlistener
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>cc.meteormc</groupId> <artifactId>packetlistener</artifactId> <version>1.2.2</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>cc.meteormc</groupId> <artifactId>packetlistener</artifactId> <version>1.2.2</version> <name>PacketListener</name> <description>A lightweight and easy-to-use packet listener API library.</description> <url>https://github.com/Meteor2333/PacketListener</url> <licenses> <license> <name>MIT License</name> <url>https://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <developers> <developer> <name>Meteor23333</name> <email>Meteor23333@outlook.com</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/Meteor2333/PacketListener.git</connection> <developerConnection>scm:git:ssh://github.com:Meteor2333/PacketListener.git</developerConnection> <url>https://github.com/Meteor2333/PacketListener/tree/master</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> <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>verify</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>verify</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.3</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.8.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <autoPublish>true</autoPublish> <waitUntil>published</waitUntil> </configuration> </plugin> </plugins> </build> <repositories> <repository> <id>codemc-nms</id> <url>https://repo.codemc.io/repository/nms/</url> </repository> </repositories> <dependencies> <!-- <dependency>--> <!-- <groupId>org.spigotmc</groupId>--> <!-- <artifactId>spigot</artifactId>--> <!-- <version>1.8.8-R0.1-SNAPSHOT</version>--> <!-- <scope>provided</scope>--> <!-- </dependency>--> <dependency> <groupId>org.spigotmc</groupId> <artifactId>spigot</artifactId> <version>1.13.2-R0.1-SNAPSHOT</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.jetbrains</groupId> <artifactId>annotations</artifactId> <version>26.0.2</version> <scope>provided</scope> </dependency> </dependencies> </project>