Check the example and template projects to start your creating your plugin in few clicks
<dependency> <groupId>org.powernukkit</groupId> <artifactId>powernukkit</artifactId> <version>1.5.1.0-PN</version> </dependency>
repositories { mavenCentral() } dependencies { implementation("org.powernukkit:powernukkit:1.5.1.0-PN") }
For snapshot builds, you need to add the Sonatype Snapshot Repository
<repositories> <id>powernukkit-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases><enabled>false</enabled></releases> </repositories>
repositories { mavenCentral() maven { url 'https://oss.sonatype.org/content/repositories/snapshots'} }
If you find any bugs or have any suggestion, please use the GitHub Issues system preferably. But if you can't or have difficulties using it, you can also use the PowerNukkit Community forums or have a talk at our Discord guild.
Have fun! 😁