Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
unknown committed Apr 24, 2020
2 parents a0fab0b + 452824c commit 7faaf65
Showing 1 changed file with 46 additions and 8 deletions.
54 changes: 46 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,34 @@
# PacketEvents
API for listenening to minecraft packets
Listen to minecraft packets and send minecraft packets.

Credit to TinyProtocol

PacketEvents coded by purplex
Discord server: https://discord.gg/ZWTkg4v
PacketEvents coded by purplex.

Coding help discord server: https://discord.gg/ZWTkg4v

# Maven
Examples can be found at
me/purplex/packetevents/example/TestExample.java

# Gradle

```gradle
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
dependencies {
implementation 'com.github.purplexdev:packetevents:1.0.6'
}
```


# Maven

```xml
<repositories>
<repository>
<id>jitpack.io</id>
Expand All @@ -19,9 +38,28 @@ Discord server: https://discord.gg/ZWTkg4v

<dependencies>
<dependency>
<groupId>com.github.purpdev</groupId>
<artifactId>PacketEvents</artifactId>
<version>1.0.5</version>
<scope>compile</scope>
<groupId>com.github.purplexdev</groupId>
<artifactId>packetevents</artifactId>
<version>1.0.6</version>
</dependency>
</dependencies>
```

# sbt

```
resolvers += "jitpack" at "https://jitpack.io"
libraryDependencies += "com.github.purplexdev" % "packetevents" % "1.0.6"
```

# leiningen
```
:repositories [["jitpack" "https://jitpack.io"]]
:dependencies [[com.github.purplexdev/packetevents "1.0.6"]]
```




0 comments on commit 7faaf65

Please sign in to comment.