@@ -14,7 +14,7 @@ An intelligent Gradle plugin used to develop plugins for Spigot, Bungeecord and
1414
1515[ comment ] : < > ( !! Do not edit this file but 'docs/templates' or 'docs/root-templates', See [CONTRIBUTING.md] !! )
1616
17- - [ Description file] ( https://docs.typst.io/spigradle/3.2.2 /spigradle/io.typst.spigradle.spigot/-spigot-extension/index.html )
17+ - [ Description file] ( https://docs.typst.io/spigradle/3.3.0 /spigradle/io.typst.spigradle.spigot/-spigot-extension/index.html )
1818 generation: ` plugin.yml ` and/or ` bungee.yml `
1919
2020- Main class detection
@@ -26,7 +26,7 @@ An intelligent Gradle plugin used to develop plugins for Spigot, Bungeecord and
2626``` groovy
2727plugins {
2828 id 'java'
29- id 'io.typst.spigradle' version '3.2.2 '
29+ id 'io.typst.spigradle' version '3.3.0 '
3030}
3131
3232group 'org.sample'
@@ -35,10 +35,11 @@ version '1.0.0'
3535repositories {
3636 mavenCentral()
3737 spigotmc()
38+ papermc()
3839}
3940
4041dependencies {
41- compileOnly spigot('1.21.8')
42+ compileOnly paper('1.21.8') // or spigot('1.21.8')
4243}
4344
4445spigot {
@@ -101,16 +102,17 @@ Groovy DSL
101102``` groovy
102103plugins {
103104 id 'java'
104- id 'io.typst.spigradle' version '3.2.2 '
105+ id 'io.typst.spigradle' version '3.3.0 '
105106}
106107
107108repositories {
108109 mavenCentral()
109110 spigotmc()
111+ papermc()
110112}
111113
112114dependencies {
113- compileOnly spigot('1.21.8')
115+ compileOnly paper('1.21.8') // or spigot('1.21.8')
114116}
115117
116118spigot {
@@ -137,17 +139,18 @@ import io.typst.spigradle.spigot.*
137139
138140plugins {
139141 kotlin(" jvm" ) version " 2.1.20"
140- id(" io.typst.spigradle" ) version " 3.2.2 "
142+ id(" io.typst.spigradle" ) version " 3.3.0 "
141143}
142144
143145repositories {
144146 mavenCentral()
145147 spigotmc()
148+ papermc()
146149}
147150
148151dependencies {
149152 implementation(kotlin(" stdlib" ))
150- compileOnly(spigot (" 1.21.8" ))
153+ compileOnly(paper (" 1.21.8" ))
151154}
152155
153156spigot {
@@ -178,7 +181,7 @@ buildscript {
178181 gradlePluginPortal()
179182 }
180183 dependencies {
181- classpath 'io.typst:spigradle:3.2.2 '
184+ classpath 'io.typst:spigradle:3.3.0 '
182185 }
183186}
184187
@@ -196,7 +199,7 @@ buildscript {
196199 gradlePluginPortal()
197200 }
198201 dependencies {
199- classpath("io.typst:spigradle:3.2.2 ")
202+ classpath("io.typst:spigradle:3.3.0 ")
200203 }
201204}
202205
@@ -223,7 +226,7 @@ Groovy DSL
223226``` groovy
224227plugins {
225228 id 'java'
226- id 'io.typst.spigradle.bungee' version '3.2.2 '
229+ id 'io.typst.spigradle.bungee' version '3.3.0 '
227230}
228231
229232repositories {
@@ -241,7 +244,7 @@ dependencies {
241244``` kotlin
242245plugins {
243246 kotlin(" jvm" ) version " 2.1.20"
244- id(" io.typst.spigradle.bungee" ) version " 3.2.2 "
247+ id(" io.typst.spigradle.bungee" ) version " 3.3.0 "
245248}
246249
247250repositories {
@@ -265,7 +268,7 @@ buildscript {
265268 gradlePluginPortal()
266269 }
267270 dependencies {
268- classpath 'io.typst:spigradle:3.2.2 '
271+ classpath 'io.typst:spigradle:3.3.0 '
269272 }
270273}
271274
@@ -283,7 +286,7 @@ buildscript {
283286 gradlePluginPortal()
284287 }
285288 dependencies {
286- classpath("io.typst:spigradle:3.2.2 ")
289+ classpath("io.typst:spigradle:3.3.0 ")
287290 }
288291}
289292
@@ -310,7 +313,7 @@ Groovy DSL
310313``` groovy
311314plugins {
312315 id 'java'
313- id 'io.typst.spigradle.nukkit' version '3.2.2 '
316+ id 'io.typst.spigradle.nukkit' version '3.3.0 '
314317}
315318
316319repositories {
@@ -328,7 +331,7 @@ dependencies {
328331``` kotlin
329332plugins {
330333 kotlin(" jvm" ) version " 2.1.20"
331- id(" io.typst.spigradle.nukkit" ) version " 3.2.2 "
334+ id(" io.typst.spigradle.nukkit" ) version " 3.3.0 "
332335}
333336
334337repositories {
@@ -352,7 +355,7 @@ buildscript {
352355 gradlePluginPortal()
353356 }
354357 dependencies {
355- classpath 'io.typst:spigradle:3.2.2 '
358+ classpath 'io.typst:spigradle:3.3.0 '
356359 }
357360}
358361
@@ -370,7 +373,7 @@ buildscript {
370373 gradlePluginPortal()
371374 }
372375 dependencies {
373- classpath("io.typst:spigradle:3.2.2 ")
376+ classpath("io.typst:spigradle:3.3.0 ")
374377 }
375378}
376379
@@ -445,7 +448,7 @@ repositories {
445448| bukkit() | org.bukkit:bukkit:$version | 1.21.8-R0.1-SNAPSHOT | mavenLocal(), BuildTools |
446449| craftbukkit() | org.bukkit:craftbukkit:$version | 1.21.8-R0.1-SNAPSHOT | mavenLocal(), BuildTools |
447450| lombok() | org.projectlombok:lombok:$version | 1.18.38 | mavenCentral() |
448- | spigradle() | io.typst:spigradle:$version | 3.2.2 | mavenCentral() |
451+ | spigradle() | io.typst:spigradle:$version | 3.3.0 | mavenCentral() |
449452| protocolLib() | com.comphenix.protocol:ProtocolLib:$version | 5.3.0 | protocolLib() |
450453| vault() | com.github.MilkBowl:VaultAPI:$version | 1.7 | jitpack() |
451454| vaultAll() | com.github.MilkBowl:Vault:$version | 1.7.3 | jitpack() |
0 commit comments