Skip to content
Open
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 src/content/docs/velocity/admin/getting-started/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -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?

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/velocity/admin/reference/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.<yourname>` or if you don't have GitHub you can just use `me.<yourname>`. |
| **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:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down