-
Notifications
You must be signed in to change notification settings - Fork 1
Getting Started For API Development
Eric Lam edited this page Jan 18, 2023
·
4 revisions
first, add this repository URL to your maven project
From nexus (without authenication)
<repository>
<id>groovier</id>
<url>https://xuancat.app:8443/repository/java/</url>
</repository>
From github (with authentication)
<repository>
<id>github</id>
<url>https://maven.pkg.github.com/groovier-minecraft/groovier</url>
</repository>
then add the dependency
<dependency>
<groupId>org.groovier</groupId>
<artifactId>groovier-engine</artifactId>
<version>${latest.version}</version>
</dependency>
To get started, you can
-
check the javadocs
-
check the source code of
groovier-plugin
for references
-
Script Development
-
Adding Scripts
-
API Development