-
Notifications
You must be signed in to change notification settings - Fork 1
First Steps
Phoenix-Ra edited this page Jul 22, 2023
·
15 revisions
{version} replace with tag from the releases Use tag ending with '-old' for versions below 1.13.
For versions 1.17+ use standard one
Gradle:
repositories {
...
maven { url 'https://jitpack.io' }
}
dependencies {
compileOnly 'com.github.Phoenix-Ra:AtumCore:{version}'
}
Maven:
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependency>
<groupId>com.github.Phoenix-Ra</groupId>
<artifactId>AtumCore</artifactId>
<version>{version}</version>
</dependency>
AtumCore has its own version of the JavaPlugin class from bukkit.
To be able to use all major lib features it has to be a parent of your main class.

The last step
In order for atum plugin to work properly, you need to add the config.yml and lang.yml files to the resources folder.
You can leave them empty.
Thats it! The only thing that is left is to add plugin.yml and then you can test it!