Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/architecture/integrations.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Cooking owns food items, station behavior, crop quality math, and livestock reco
## Platform contract

Cooking on `main` targets **Minecraft 1.21.10 and Java 21**. Maven compiles with
`maven.compiler.release=21` against the provided Spigot 1.21.10 API, and
`maven.compiler.release=21` against the provided Paper 1.21.10 API, and
`plugin.yml` declares `api-version: 1.21.10`.

Use the TLibs and InteractibleFurniture versions declared in `pom.xml`.
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
<systemPath>${project.basedir}/libs/gson-2.10.1.jar</systemPath>
</dependency>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<groupId>io.papermc.paper</groupId>
<artifactId>paper-api</artifactId>
<version>1.21.10-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
Expand Down Expand Up @@ -149,8 +149,8 @@

<repositories>
<repository>
<id>spigot-snapshots</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
<id>papermc</id>
<url>https://repo.papermc.io/repository/maven-public/</url>
</repository>
</repositories>

Expand Down
Loading