custom-crafter-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.sakaki-aruka</groupId>
<artifactId>custom-crafter-api</artifactId>
<version>5.0.20</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.sakaki-aruka</groupId>
<artifactId>custom-crafter-api</artifactId>
<version>5.0.20</version>
<name>Custom Crafter API</name>
<description>Custom Crafter API supports to provide your full customized recipe to players.</description>
<url>https://github.com/Sakaki-Aruka/custom-crafter.git</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/license/MIT</url>
<distribution>repo</distribution>
<comments>This project is distributed under the MIT License.</comments>
</license>
</licenses>
<developers>
<developer>
<name>Sakaki Aruka</name>
<email>aruka.works@gmail.com</email>
<url>https://github.com/Sakaki-Aruka</url>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/Sakaki-Aruka/custom-crafter.git</connection>
<developerConnection>scm:git:ssh://github.com:Sakaki-Aruka/custom-crafter.git</developerConnection>
<url>http://github.com/Sakaki-Aruka/custom-crafter/</url>
</scm>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>2.3.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.papermc.paper</groupId>
<artifactId>paper-api</artifactId>
<version>1.21.4-R0.1-20250925.065901-231</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.choco-solver</groupId>
<artifactId>choco-solver</artifactId>
<version>5.0.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.tcoded</groupId>
<artifactId>FoliaLib</artifactId>
<version>0.5.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>24.1.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>papermc-repo</id>
<url>https://repo.papermc.io/repository/maven-public/</url>
</repository>
<repository>
<id>sonatype</id>
<url>https://oss.sonatype.org/content/groups/public/</url>
</repository>
<repository>
<id>tcoded-releases</id>
<url>https://repo.tcoded.com/releases</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
<version>2.3.0</version>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
</project>