Skip to content

Commit 8120bf5

Browse files
committed
fix: #487, #526
1 parent b0b3eaf commit 8120bf5

File tree

4 files changed

+27
-4
lines changed

4 files changed

+27
-4
lines changed

src/content/docs/paper/dev/getting-started/plugin-yml.mdx

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,29 @@ Each permission node can have children. When set to `true`, it will inherit the
152152
The default value that permissions that don't have a `default` specified will have. This can be `op`/`notop` or `true`/`false`.
153153
- `default-permission: true`
154154

155+
### paper-plugin-loader
156+
157+
A fully qualified class name of a Paper plugin [loader](/paper/dev/getting-started/paper-plugins#loaders) class, if you want to use one.
158+
- `paper-plugin-loader: com.example.paperplugin.MyPluginLoader`
159+
160+
:::danger[Experimental]
161+
162+
[Paper plugins](/paper/dev/getting-started/paper-plugins) (and therefore plugin loaders) are experimental and may be subject to change.
163+
164+
:::
165+
166+
### paper-skip-libraries
167+
168+
If `true`, Paper will skip resolution of libraries defined in the [`libraries` section](#libraries).
169+
This is useful for delegating library loading to a Paper plugin [loader](/paper/dev/getting-started/paper-plugins#loaders).
170+
- `paper-skip-libraries: false`
171+
172+
:::danger[Experimental]
173+
174+
[Paper plugins](/paper/dev/getting-started/paper-plugins) (and therefore plugin loaders) are experimental and may be subject to change.
175+
176+
:::
177+
155178
## Commands
156179

157180
This is a list of commands that your plugin uses. This is useful for plugins that use commands to provide features.

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.3.x requires at least Java 17, however it works best with 21 or above.
12+
Velocity 3.3.x and above requires at least Java 17, however it works best with 21 or above.
1313

1414
## Where can I find Velocity plugins?
1515

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ the output in the next section.
6565

6666
Here's a sample of what you'll see once we've started the proxy:
6767

68-
```log
69-
[05:41:13 INFO]: Booting up Velocity 3.3.0-SNAPSHOT (git-74c932e5-b363)...
68+
```log replace
69+
[05:41:13 INFO]: Booting up Velocity \{LATEST_VELOCITY_RELEASE} (git-74c932e5-b363)...
7070
[05:41:13 INFO]: Loading localizations...
7171
[05:41:13 INFO]: Connections will use epoll channels, libdeflate (Linux aarch64) compression, OpenSSL (Linux aarch64) ciphers
7272
[05:41:13 INFO]: Loading plugins...

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.3.x now requires Java 17 and above.
12+
Velocity 3.3.x and above now requires Java 17 and above.
1313

1414
## Removal of legacy dependencies
1515

0 commit comments

Comments
 (0)