Skip to content
Francisco Solis edited this page Jan 16, 2023 · 4 revisions

Welcome

Welcome to the SimpleCoreAPI wiki!

Note: This wiki might be outdated, we're in the process of updating it.

Require Modules

Add the simplecoreapi.modules file to the root of your jar and use the following format:

# This is a comment
mymodulerepoid

Replace mymodulerepoid by an actual repository id for the modules, for example: FilesModule is filesmodule, you can check the file simplecoreapi.properties file of every module to see the repo id. You may also see this link to see all the modules: modules-repository.json

Use Modules

First you need the jitpack repository. You can use the following maven url for the repo: https://jitpack.io/

Here you can choose the respective build tools repository format:

  • Maven POM
<repository>
	<id>JitPack</id>
	<url>https://jitpack.io/</url>
</repository>
  • Gradle Groovy
maven { url 'https://jitpack.io/' }
  • Gradle Kotlin
maven("https://jitpack.io/")
Clone this wiki locally