@@ -15,31 +15,28 @@ Gradle utilities to simplify Bukkit/Spigot plugins writing and debugging.
15
15
- [ Running Dev server] ( #running-dev-server )
16
16
- [ Dev server configuration] ( #dev-server-configuration )
17
17
- [ Migration Guide] ( #migration-guide )
18
+ - [ Upgrade from 0.10.x] ( #upgrade-from-010x )
18
19
- [ Upgrade from 0.8.x] ( #upgrade-from-08x )
19
20
- [ License] ( #license )
20
21
21
22
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
22
23
23
- #### Features:
24
+ #### Features
25
+
24
26
- Sets up compiler encoding to UTF-8
25
- - Sets archivesBaseName to plugin name
26
- - Supports APIs: Bukkit, CraftBukkit, Spigot, Paper
27
27
- Provides short extension functions to add common repositories and dependencies
28
28
- Generates plugin.yml from Gradle project information
29
29
- Allows running dev server from IDE
30
30
- Runs server using [ jpenilla/run-task]
31
31
32
- #### TODO:
33
- - Add smart dependency system
34
-
35
32
## Installation
36
33
37
34
> [ !NOTE]
38
35
> BukkitGradle requires Gradle 8.0+ to run
39
36
40
37
``` kotlin
41
38
plugins {
42
- id(" ru.endlesscode.bukkitgradle" ) version " 0.10.1 "
39
+ id(" ru.endlesscode.bukkitgradle" ) version " 1.0.0 "
43
40
}
44
41
```
45
42
@@ -79,7 +76,7 @@ These values will be used to generate the `plugin.yml` file:
79
76
80
77
``` kotlin
81
78
plugins {
82
- id(" ru.endlesscode.bukkitgradle" ) version " 0.10.1 "
79
+ id(" ru.endlesscode.bukkitgradle" ) version " 1.0.0 "
83
80
}
84
81
85
82
group = " com.example.myplugin"
0 commit comments