File tree 3 files changed +11
-8
lines changed
3 files changed +11
-8
lines changed Original file line number Diff line number Diff line change 1
1
## [ Unreleased]
2
2
3
+ ## [ 0.10.0] - 2021-07-20
4
+
3
5
### Added
4
6
5
7
- Plugin should be compatible with [ configuration cache] ( https://docs.gradle.org/current/userguide/configuration_cache.html )
15
17
- Add duplicate strategy to processResources (#58 )
16
18
- Fix spigot core copying (#55 )
17
19
18
- ## [ 0.9.2] - 2020 -01-25
20
+ ## [ 0.9.2] - 2021 -01-25
19
21
20
22
### Fixed
21
23
- Fixed task ` copyPlugins ` when shadow plugin is enabled
22
24
23
- ## [ 0.9.1] - 2020 -01-16
25
+ ## [ 0.9.1] - 2021 -01-16
24
26
25
27
### Added
26
28
- ` codemc() ` repository extension
29
31
- ** BREAKING CHANGE** : ` bukkit ` dependency extension renamed to ` bukkitApi ` .
30
32
This name is more consistent, also it avoids conflict with ` BukkitExtension ` extension name.
31
33
32
- ## [ 0.9.0] - 2020 -01-08
34
+ ## [ 0.9.0] - 2021 -01-08
33
35
34
36
### Reworked tasks hierarchy
35
37
@@ -115,7 +117,8 @@ now it is friendly to Kotlin DSL.
115
117
[ uptodate ] : https://docs.gradle.org/current/userguide/more_about_tasks.html#sec:up_to_date_checks
116
118
[ vault ] : https://github.com/MilkBowl/VaultAPI
117
119
118
- [ unreleased ] : https://github.com/EndlessCodeGroup/BukkitGradle/compare/0.9.2...develop
120
+ [ unreleased ] : https://github.com/EndlessCodeGroup/BukkitGradle/compare/0.10.0...develop
121
+ [ 0.10.0 ] : https://github.com/EndlessCodeGroup/BukkitGradle/compare/0.9.2...0.10.0
119
122
[ 0.9.2 ] : https://github.com/EndlessCodeGroup/BukkitGradle/compare/0.9.1...0.9.2
120
123
[ 0.9.1 ] : https://github.com/EndlessCodeGroup/BukkitGradle/compare/0.9.0...0.9.1
121
124
[ 0.9.0 ] : https://github.com/EndlessCodeGroup/BukkitGradle/compare/0.8.2...0.9.0
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ Gradle utilities for easier writing Bukkit plugins.
40
40
#### With new plugins mechanism
41
41
``` kotlin
42
42
plugins {
43
- id(" ru.endlesscode.bukkitgradle" ) version " 0.9.2 "
43
+ id(" ru.endlesscode.bukkitgradle" ) version " 0.10.0 "
44
44
}
45
45
```
46
46
@@ -51,7 +51,7 @@ buildscript {
51
51
mavenCentral()
52
52
}
53
53
dependencies {
54
- classpath("gradle.plugin.ru.endlesscode:bukkit-gradle:0.9.2 ")
54
+ classpath("gradle.plugin.ru.endlesscode:bukkit-gradle:0.10.0 ")
55
55
}
56
56
}
57
57
@@ -85,7 +85,7 @@ plugins {
85
85
Simple ` build.gradle ` file that use BukkitGradle:
86
86
``` kotlin
87
87
plugins {
88
- id(" ru.endlesscode.bukkitgradle" ) version " 0.9.2 "
88
+ id(" ru.endlesscode.bukkitgradle" ) version " 0.10.0 "
89
89
}
90
90
91
91
// Project information
Original file line number Diff line number Diff line change 1
1
group =ru.endlesscode
2
2
description =Bukkit Gradle integration plugins
3
- version =0.10.0-SNAPSHOT
3
+ version =0.10.0
4
4
org.gradle.jvmargs =-Xmx3G
5
5
org.gradle.parallel =true
6
6
org.gradle.daemon =true
You can’t perform that action at this time.
0 commit comments