A library providing manager for many similar services.
- Provides manager for many similar services.
Make sure you have the following installed:
- Java Development Kit (JDK) version 8 or later.
-
Add the following repository to the
<repositories>block in yourpom.xmlfile:<repository> <id>akazukin-repo</id> <name>Akazukin Repository</name> <url>https://maven.akazukin.org/refer/maven-public/</url> </repository>
-
Add the dependency to the
<dependencies>block in yourpom.xmlfile:<dependency> <groupId>org.akazukin</groupId> <artifactId>service</artifactId> <version>VERSION</version> </dependency>
-
Add the repository to the
repositoriesblock in yourbuild.gradlefile:maven { name = 'Akazukin Repository' url = 'https://maven.akazukin.org/refer/maven-public/' } -
Add the dependency to the
dependenciesblock in yourbuild.gradlefile:implementation 'org.akazukin:service:<VERSION>'
Please read the Contribution Guide carefully and follow the coding conventions and guidelines when making your changes.
To build the project from source, follow these steps:
-
Clone the repository:
git clone https://github.com/Akazukin-Team/Service-Library.git cd Service-Library -
Build the project with Gradle:
./gradlew build
The compiled JAR file will be located in the
build/libs/directory. -
Publish to the local Maven repository using the
maven-publishplugin:./gradlew publishToMavenLocal
This project uses GitHub Actions for Continuous Integration (CI).
Every push to the main branch automatically triggers the build and test workflow.
This project is licensed under the terms described in the License file.
If you need further assistance or wish to contact us directly, please refer to the Support page.