Installation
You can install Panels plugins using Maven or by manually adding JAR files, depending on how the plugin is distributed.
Using Maven
If the plugin is published to a public Maven repository:
- Open your
TeamCode
module'sbuild.gradle
file. - Add the plugin as a dependency. For example:
dependencies {
implementation 'com.example:panels-plugin:1.0.0'
}
groovy
- Sync the project to apply changes.
Make sure the Maven repository is included in your
repositories
block if it's not a central repository.
Using a JAR File
If the plugin is shared as a .jar
file:
- Place the
.jar
file insideTeamCode/libs
(orTeamCode/jars
depending on your folder structure). - In your
TeamCode
build.gradle
file, add the following:
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
}
groovy
Make sure the
libs
folder exists and contains your JAR file before syncing.
Official Plugin JAR Files
You can find official plugin JARs and example setups here:
🔗 Panels Plugin Examples on GitHub
A library by Lazar from 19234 ByteForce.