mirror of
https://github.com/EngineHub/WorldGuard.git
synced 2024-12-27 11:37:47 +01:00
Expand version in plugin.yml during gradle build.
This commit is contained in:
parent
536132a250
commit
6db2df4e29
@ -1,7 +1,8 @@
|
|||||||
apply plugin: 'eclipse'
|
apply plugin: 'eclipse'
|
||||||
apply plugin: 'idea'
|
apply plugin: 'idea'
|
||||||
|
|
||||||
version '6.1.2-SNAPSHOT'
|
project.version = '6.1.2-SNAPSHOT'
|
||||||
|
ext.internalVersion = project.version + ";" + gitCommitHash
|
||||||
|
|
||||||
checkstyle.configFile = new File(projectDir, "config/checkstyle/checkstyle.xml")
|
checkstyle.configFile = new File(projectDir, "config/checkstyle/checkstyle.xml")
|
||||||
|
|
||||||
@ -20,6 +21,17 @@
|
|||||||
testCompile 'org.hamcrest:hamcrest-library:1.2.1'
|
testCompile 'org.hamcrest:hamcrest-library:1.2.1'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
processResources {
|
||||||
|
from (sourceSets.main.resources.srcDirs) {
|
||||||
|
expand project.properties
|
||||||
|
include 'plugin.yml'
|
||||||
|
}
|
||||||
|
|
||||||
|
from (sourceSets.main.resources.srcDirs) {
|
||||||
|
exclude 'plugin.yml'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
shadowJar {
|
shadowJar {
|
||||||
dependencies {
|
dependencies {
|
||||||
include(dependency('org.khelekore:prtree:1.5.0'))
|
include(dependency('org.khelekore:prtree:1.5.0'))
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
name: WorldGuard
|
name: WorldGuard
|
||||||
main: com.sk89q.worldguard.bukkit.WorldGuardPlugin
|
main: com.sk89q.worldguard.bukkit.WorldGuardPlugin
|
||||||
version: "${project.version}"
|
version: "${project.internalVersion}"
|
||||||
softdepend: [WorldEdit, CommandBook]
|
softdepend: [WorldEdit, CommandBook]
|
||||||
|
Loading…
Reference in New Issue
Block a user