Unknown Domain Spigot Plugin Library
By using this lib, you can easily develop your plugin with the help of such feature:
- Annotation Command Support (Build your command with @Command)
- Inventory UI (Custom behaviors of inventory's slot)
- Area Manager (Allow you to manager area intuitively)
- Item/Block Helper
- NMS Wapper (An easy and safe way to using nms)
- Conversation API
- Utils & Helpers
- ....
To get this projectf rom JitPack.io into your build:
Maven:
- Add the JitPack repository to your build file
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://www.jitpack.io</url>
</repository>
</repositories>
- Add the dependency
<dependency>
<groupId>com.github.UnknownStudio</groupId>
<artifactId>UDPLib</artifactId>
<version>1.1.1</version>
</dependency>
Gradle:
- Add this in your root build.gradle at the end of repositories
allprojects {
repositories {
...
maven { url 'https://www.jitpack.io' }
}
}
- Add the dependency
dependencies {
compile 'com.github.UnknownStudio:UDPLib:1.1.1'
}