Skip to content

Commit e7cbe67

Browse files
committed
Update for Velocity 4
1 parent cc3f331 commit e7cbe67

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/content/docs/velocity/admin/getting-started/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ many of these questions from the user perspective.
99

1010
## What version of Java does Velocity require?
1111

12-
Velocity 3.5.x and above requires at least Java 21.
12+
Velocity 4.0.x and above requires at least Java 25.
1313

1414
## Where can I find Velocity plugins?
1515

src/content/docs/velocity/admin/getting-started/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This page covers how to install and set up a minimal configuration of Velocity.
99
## Installing Java
1010

1111
Velocity is written in Java, so if you do not already have Java installed, you will need to install
12-
it before you continue. Velocity requires at least Java 21.
12+
it before you continue. Velocity requires at least Java 25.
1313
See our [Java installation guide](/misc/java-install) for detailed instructions.
1414

1515
## Downloading Velocity

src/content/docs/velocity/admin/reference/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Velocity is designed to be easy to configure and set up. Every Velocity file is
1010
pitfalls of YAML and other configuration formats common in the community.
1111

1212
An up-to-date version of the default configuration can be found on
13-
[GitHub](https://github.com/PaperMC/Velocity/blob/dev/3.0.0/proxy/src/main/resources/default-velocity.toml).
13+
[GitHub](https://github.com/PaperMC/Velocity/blob/dev/4.0.0/proxy/src/main/resources/default-velocity.toml).
1414

1515
## Data types
1616

src/content/docs/velocity/dev/getting-started/creating-your-first-plugin.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ IDEA is recommended.
2525
- Open your IDE
2626
- Click `Create New Project` or the equivalent
2727
- Select either `Gradle` or `Maven`
28-
- Make sure your **Project JDK** is Java 21 or later
28+
- Make sure your **Project JDK** is Java 25 or later
2929
- **Finish** the dialog and open the project.
3030

3131
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.
222222
| **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>`. |
223223
| **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. |
224224
| **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. |
225-
| **JDK** | The JDK you want to use. This can be anything from Java 21 and above. |
225+
| **JDK** | The JDK you want to use. This can be anything from Java 25 and above. |
226226

227227
Now you can click on the `Create` button and IntelliJ will create the project for you.
228228
If everything went well, you should see something like this:

src/content/docs/velocity/dev/how-to/porting-from-velocity-1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ document very carefully**.
99

1010
## Minimum supported Java version bump
1111

12-
Velocity 3.5.x and above now requires Java 21 and above.
12+
Velocity 4.0.x and above now requires Java 25 and above.
1313

1414
## Removal of legacy dependencies
1515

0 commit comments

Comments
 (0)