Skip to content

English Readme

ancap-kun edited this page Mar 22, 2023 · 10 revisions

AncapFramework

Intelligently designed framework for Minecraft development.

Overview

The framework solves most of the routine tasks that arise when creating a plugin for Bukkit - with a special focus on high-load, feature-rich, multi-language plugins with lots of code and logic.

Plugin

Release

Add everything at once:

<repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
</repository>

<dependency>
    <groupId>com.github.ancap-dev</groupId>
    <artifactId>AncapFramework</artifactId>
    <version>смотри выше</version>
    <scope>provided</scope>
</dependency>

Modularly:

<repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
</repository>

<dependency>
    <groupId>com.github.ancap-dev.AncapFramework</groupId>
    <artifactId>AncapPluginAPI</artifactId>
    <version>смотри выше</version>
    <scope>provided</scope>
</dependency>

I recommend to use the modules, AncapFramework by the idea is the modular project.

Wiki

All information about the framework can be found on wiki.

Clone this wiki locally