Skip to content

Commit e42a3fe

Browse files
chore(release): 2.3.3 [skip ci]
## [2.3.3](v2.3.2...v2.3.3) (2021-12-27) ### Bug Fixes * **spigot-debug:** build version inference on `debugPaper`, `debugSpigot` ([a02f7e3](a02f7e3))
1 parent a02f7e3 commit e42a3fe

6 files changed

Lines changed: 64 additions & 27 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [2.3.3](https://github.com/spigradle/spigradle/compare/v2.3.2...v2.3.3) (2021-12-27)
2+
3+
4+
### Bug Fixes
5+
6+
* **spigot-debug:** build version inference on `debugPaper`, `debugSpigot` ([a02f7e3](https://github.com/spigradle/spigradle/commit/a02f7e38a14a582bf3de2c46bd4178c10dd74ef9))
7+
18
## [2.3.2](https://github.com/spigradle/spigradle/compare/v2.3.1...v2.3.2) (2021-12-23)
29

310

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ An intelligent Gradle plugin used to develop plugins for Spigot, Bungeecord and
1919
```groovy
2020
plugins {
2121
id 'java'
22-
id 'kr.entree.spigradle' version '2.3.2'
22+
id 'kr.entree.spigradle' version '2.3.3'
2323
}
2424
2525
group 'org.sample'
@@ -65,7 +65,7 @@ Groovy DSL
6565
```groovy
6666
plugins {
6767
id 'java'
68-
id 'kr.entree.spigradle' version '2.3.2'
68+
id 'kr.entree.spigradle' version '2.3.3'
6969
}
7070
7171
dependencies {
@@ -81,7 +81,7 @@ import kr.entree.spigradle.kotlin.*
8181

8282
plugins {
8383
kotlin("jvm") version "1.3.72"
84-
id("kr.entree.spigradle") version "2.3.2"
84+
id("kr.entree.spigradle") version "2.3.3"
8585
}
8686

8787
dependencies {
@@ -101,7 +101,7 @@ buildscript {
101101
gradlePluginPortal()
102102
}
103103
dependencies {
104-
classpath 'kr.entree:spigradle:2.3.2'
104+
classpath 'kr.entree:spigradle:2.3.3'
105105
}
106106
}
107107
@@ -119,7 +119,7 @@ buildscript {
119119
gradlePluginPortal()
120120
}
121121
dependencies {
122-
classpath("kr.entree:spigradle:2.3.2")
122+
classpath("kr.entree:spigradle:2.3.3")
123123
}
124124
}
125125
@@ -143,7 +143,7 @@ Groovy DSL
143143
```groovy
144144
plugins {
145145
id 'java'
146-
id 'kr.entree.spigradle.bungee' version '2.3.2'
146+
id 'kr.entree.spigradle.bungee' version '2.3.3'
147147
}
148148
149149
dependencies {
@@ -157,7 +157,7 @@ dependencies {
157157
```kotlin
158158
plugins {
159159
kotlin("jvm") version "1.3.72"
160-
id("kr.entree.spigradle.bungee") version "2.3.2"
160+
id("kr.entree.spigradle.bungee") version "2.3.3"
161161
}
162162

163163
dependencies {
@@ -177,7 +177,7 @@ buildscript {
177177
gradlePluginPortal()
178178
}
179179
dependencies {
180-
classpath 'kr.entree:spigradle:2.3.2'
180+
classpath 'kr.entree:spigradle:2.3.3'
181181
}
182182
}
183183
@@ -195,7 +195,7 @@ buildscript {
195195
gradlePluginPortal()
196196
}
197197
dependencies {
198-
classpath("kr.entree:spigradle:2.3.2")
198+
classpath("kr.entree:spigradle:2.3.3")
199199
}
200200
}
201201
@@ -220,7 +220,7 @@ Groovy DSL
220220
```groovy
221221
plugins {
222222
id 'java'
223-
id 'kr.entree.spigradle.nukkit' version '2.3.2'
223+
id 'kr.entree.spigradle.nukkit' version '2.3.3'
224224
}
225225
226226
dependencies {
@@ -234,7 +234,7 @@ dependencies {
234234
```kotlin
235235
plugins {
236236
kotlin("jvm") version "1.3.72"
237-
id("kr.entree.spigradle.nukkit") version "2.3.2"
237+
id("kr.entree.spigradle.nukkit") version "2.3.3"
238238
}
239239

240240
dependencies {
@@ -254,7 +254,7 @@ buildscript {
254254
gradlePluginPortal()
255255
}
256256
dependencies {
257-
classpath 'kr.entree:spigradle:2.3.2'
257+
classpath 'kr.entree:spigradle:2.3.3'
258258
}
259259
}
260260
@@ -272,7 +272,7 @@ buildscript {
272272
gradlePluginPortal()
273273
}
274274
dependencies {
275-
classpath("kr.entree:spigradle:2.3.2")
275+
classpath("kr.entree:spigradle:2.3.3")
276276
}
277277
}
278278
@@ -342,7 +342,7 @@ repositories {
342342
| bukkit() | org.bukkit:bukkit:$version | 1.16.1-R0.1-SNAPSHOT |
343343
| craftbukkit() | org.bukkit:craftbukkit:$version | 1.16.1-R0.1-SNAPSHOT |
344344
| lombok() | org.projectlombok:lombok:$version | 1.18.12 |
345-
| spigradle() | kr.entree:spigradle:$version | 2.3.2 |
345+
| spigradle() | kr.entree:spigradle:$version | 2.3.3 |
346346
| protocolLib() | com.comphenix.protocol:ProtocolLib:$version | 4.5.1 |
347347
| vault() | com.github.MilkBowl:VaultAPI:$version | 1.7 |
348348
| vaultAll() | com.github.MilkBowl:Vault:$version | 1.7.3 |

docs/bungeecord_plugin.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ Groovy DSL
5252

5353
```groovy
5454
plugins {
55-
id 'kr.entree.spigradle.bungee' version '2.3.2'
55+
id 'kr.entree.spigradle.bungee' version '2.3.3'
5656
}
5757
```
5858
Kotlin DSL
5959

6060
```kotlin
6161
plugins {
62-
id("kr.entree.spigradle.bungee") version "2.3.2"
62+
id("kr.entree.spigradle.bungee") version "2.3.3"
6363
}
6464
```
6565

@@ -72,7 +72,7 @@ buildscript {
7272
gradlePluginPortal()
7373
}
7474
dependencies {
75-
classpath 'kr.entree:spigradle:2.3.2'
75+
classpath 'kr.entree:spigradle:2.3.3'
7676
}
7777
}
7878
@@ -90,7 +90,7 @@ buildscript {
9090
gradlePluginPortal()
9191
}
9292
dependencies {
93-
classpath("kr.entree:spigradle:2.3.2")
93+
classpath("kr.entree:spigradle:2.3.3")
9494
}
9595
}
9696

docs/nukkit_plugin.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ Groovy DSL
5252

5353
```groovy
5454
plugins {
55-
id 'kr.entree.spigradle.nukkit' version '2.3.2'
55+
id 'kr.entree.spigradle.nukkit' version '2.3.3'
5656
}
5757
```
5858
Kotlin DSL
5959

6060
```kotlin
6161
plugins {
62-
id("kr.entree.spigradle.nukkit") version "2.3.2"
62+
id("kr.entree.spigradle.nukkit") version "2.3.3"
6363
}
6464
```
6565

@@ -72,7 +72,7 @@ buildscript {
7272
gradlePluginPortal()
7373
}
7474
dependencies {
75-
classpath 'kr.entree:spigradle:2.3.2'
75+
classpath 'kr.entree:spigradle:2.3.3'
7676
}
7777
}
7878
@@ -90,7 +90,7 @@ buildscript {
9090
gradlePluginPortal()
9191
}
9292
dependencies {
93-
classpath("kr.entree:spigradle:2.3.2")
93+
classpath("kr.entree:spigradle:2.3.3")
9494
}
9595
}
9696

docs/spigot_plugin.md

Lines changed: 34 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,14 @@ Groovy DSL
6060

6161
```groovy
6262
plugins {
63-
id 'kr.entree.spigradle' version '2.3.2'
63+
id 'kr.entree.spigradle' version '2.3.3'
6464
}
6565
```
6666
Kotlin DSL
6767

6868
```kotlin
6969
plugins {
70-
id("kr.entree.spigradle") version "2.3.2"
70+
id("kr.entree.spigradle") version "2.3.3"
7171
}
7272
```
7373

@@ -80,7 +80,7 @@ buildscript {
8080
gradlePluginPortal()
8181
}
8282
dependencies {
83-
classpath 'kr.entree:spigradle:2.3.2'
83+
classpath 'kr.entree:spigradle:2.3.3'
8484
}
8585
}
8686
@@ -98,7 +98,7 @@ buildscript {
9898
gradlePluginPortal()
9999
}
100100
dependencies {
101-
classpath("kr.entree:spigradle:2.3.2")
101+
classpath("kr.entree:spigradle:2.3.3")
102102
}
103103
}
104104
@@ -165,6 +165,34 @@ This affects both tasks `debugSpigot`, `debugPaper`, also to [IDEA RunConfigurat
165165

166166
More information: [Tasks](#tasks)
167167

168+
### Exclusion
169+
170+
[comment]: <> (!! Do not edit this file but 'docs/templates' or 'docs/root-templates', See [CONTRIBUTING.md] !!)
171+
172+
If you want to exclude some plugins, this is an example,
173+
174+
Kotlin:
175+
176+
```kotlin
177+
tasks {
178+
prepareSpigotPlugins {
179+
exclude("**/worldedit*.jar")
180+
exclude("**/worldguard*.jar")
181+
}
182+
}
183+
```
184+
185+
Groovy:
186+
187+
```groovy
188+
prepareSpigotPlugins {
189+
exclude '**/worldedit*.jar' // or exclude 'worldedit*.jar'?
190+
exclude '**/worldguard*.jar'
191+
}
192+
```
193+
194+
Then WorldEdit and WorldGuard will be excluded by the `prepareSpigotPlugins` which a [Copy](https://docs.gradle.org/current/dsl/org.gradle.api.tasks.Copy.html) task, you can use all the `Copy` features.
195+
168196
## Configuration
169197

170198
[comment]: <> (!! Do not edit this file but 'docs/templates' or 'docs/root-templates', See [CONTRIBUTING.md] !!)
@@ -186,6 +214,7 @@ About the `plugin.yml`, See [plugin-yml wiki](https://www.spigotmc.org/wiki/plug
186214
spigot {
187215
authors 'Me'
188216
depends 'ProtocolLib', 'Vault'
217+
softDepends 'WorldEdit'
189218
apiVersion '1.15'
190219
load STARTUP
191220
commands {
@@ -220,6 +249,7 @@ spigot {
220249
spigot {
221250
authors = listOf("Me")
222251
depends = listOf("ProtocolLib")
252+
softDepends = listOf("WorldEdit")
223253
apiVersion = "1.15"
224254
load = Load.STARTUP
225255
commands {

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.3.2
1+
2.3.3

0 commit comments

Comments
 (0)