diff --git a/src/content/docs/velocity/admin/getting-started/faq.md b/src/content/docs/velocity/admin/getting-started/faq.md index 7d94d471f..693e2e6f1 100644 --- a/src/content/docs/velocity/admin/getting-started/faq.md +++ b/src/content/docs/velocity/admin/getting-started/faq.md @@ -9,7 +9,7 @@ many of these questions from the user perspective. ## What version of Java does Velocity require? -Velocity 3.5.x and above requires at least Java 21. +Velocity 4.0.x and above requires at least Java 25. ## Where can I find Velocity plugins? diff --git a/src/content/docs/velocity/admin/getting-started/getting-started.md b/src/content/docs/velocity/admin/getting-started/getting-started.md index 21f81ce9c..96b582d16 100644 --- a/src/content/docs/velocity/admin/getting-started/getting-started.md +++ b/src/content/docs/velocity/admin/getting-started/getting-started.md @@ -9,7 +9,7 @@ This page covers how to install and set up a minimal configuration of Velocity. ## Installing Java Velocity is written in Java, so if you do not already have Java installed, you will need to install -it before you continue. Velocity requires at least Java 21. +it before you continue. Velocity requires at least Java 25. See our [Java installation guide](/misc/java-install) for detailed instructions. ## Downloading Velocity diff --git a/src/content/docs/velocity/admin/reference/configuration.md b/src/content/docs/velocity/admin/reference/configuration.md index d22dc3912..1158b167b 100644 --- a/src/content/docs/velocity/admin/reference/configuration.md +++ b/src/content/docs/velocity/admin/reference/configuration.md @@ -10,7 +10,7 @@ Velocity is designed to be easy to configure and set up. Every Velocity file is pitfalls of YAML and other configuration formats common in the community. An up-to-date version of the default configuration can be found on -[GitHub](https://github.com/PaperMC/Velocity/blob/dev/3.0.0/proxy/src/main/resources/default-velocity.toml). +[GitHub](https://github.com/PaperMC/Velocity/blob/dev/4.0.0/proxy/src/main/resources/default-velocity.toml). ## Data types diff --git a/src/content/docs/velocity/dev/getting-started/creating-your-first-plugin.mdx b/src/content/docs/velocity/dev/getting-started/creating-your-first-plugin.mdx index f9f35b9e3..4240cf89b 100644 --- a/src/content/docs/velocity/dev/getting-started/creating-your-first-plugin.mdx +++ b/src/content/docs/velocity/dev/getting-started/creating-your-first-plugin.mdx @@ -25,7 +25,7 @@ IDEA is recommended. - Open your IDE - Click `Create New Project` or the equivalent - Select either `Gradle` or `Maven` -- Make sure your **Project JDK** is Java 21 or later +- Make sure your **Project JDK** is Java 25 or later - **Finish** the dialog and open the project. Now we have created our project, we need configure our build system. @@ -222,7 +222,7 @@ You will be asked to provide some information about your project. | **Group ID** | The group ID of your project. This is used for Maven and Gradle. This is usually your domain name in reverse. If you don't know what you should put here, you can use something like `io.github.` or if you don't have GitHub you can just use `me.`. | | **Artifact ID** | The artifact ID of your project. This is used for Maven and Gradle. This is usually the name of your project. This is usually the same as the `Name` field. | | **Version** | The version of your project. This is used for Maven and Gradle. This is usually `1.0-SNAPSHOT` and does not really matter for now. | -| **JDK** | The JDK you want to use. This can be anything from Java 21 and above. | +| **JDK** | The JDK you want to use. This can be anything from Java 25 and above. | Now you can click on the `Create` button and IntelliJ will create the project for you. If everything went well, you should see something like this: diff --git a/src/content/docs/velocity/dev/how-to/porting-from-velocity-1.md b/src/content/docs/velocity/dev/how-to/porting-from-velocity-1.md index 38da0efcc..c72f82f0c 100644 --- a/src/content/docs/velocity/dev/how-to/porting-from-velocity-1.md +++ b/src/content/docs/velocity/dev/how-to/porting-from-velocity-1.md @@ -9,7 +9,7 @@ document very carefully**. ## Minimum supported Java version bump -Velocity 3.5.x and above now requires Java 21 and above. +Velocity 4.0.x and above now requires Java 25 and above. ## Removal of legacy dependencies