API:
Developers of other plugins can use AnhyLingo as a library.
Use the AnhyLingo plugin in your project as a dependency. Here are the instructions for adding the plugin using Gradle and Maven.
Adding Using Gradle
To use AnhyLingo in your Gradle project, add the following lines to your project's build.gradle file:
Code (Text):
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Code (Text):
dependencies {
implementation 'com.github.AnhyDev:AnhyLingo:v0.4.0'
}
Adding Using Maven
To include AnhyLingo in your Maven project, insert these lines into your pom.xml file:
Code (Text):
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Code (Text):
<dependency>
<groupId>com.github.AnhyDev</groupId>
<artifactId>AnhyLingo</artifactId>
<version>v0.4.0</version>
</dependency>