mirror of
https://github.com/plexusorg/plugin-yml.git
synced 2024-12-22 00:05:04 +00:00
fix to work with gradle 7.4
This commit is contained in:
parent
dc616b2ea5
commit
0c3c9daa64
4 changed files with 14 additions and 5 deletions
|
@ -52,8 +52,17 @@ publishing {
|
|||
from(components["java"])
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
repositories {
|
||||
maven {
|
||||
url = uri("https://nexus.telesphoreo.me/repository/gradle-plugins-snapshots")
|
||||
credentials {
|
||||
username = System.getenv("plexUser")
|
||||
password = System.getenv("plexPassword")
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
pluginBundle {
|
||||
website = url
|
||||
vcsUrl = url
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
group = net.minecrell
|
||||
name = plugin-yml
|
||||
version = 0.6.0-SNAPSHOT
|
||||
version = 0.6.1-SNAPSHOT
|
||||
description = A Gradle plugin that generates plugin.yml for Bukkit/BungeeCord/Nukkit plugins based on the Gradle project
|
||||
url = https://github.com/Minecrell/plugin-yml
|
||||
|
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
|
@ -1,5 +1,5 @@
|
|||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.1-bin.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
|
|
|
@ -43,8 +43,8 @@ class BukkitPlugin : PlatformPlugin<BukkitPluginDescription>("Bukkit", "plugin.y
|
|||
description.description = description.description ?: project.description
|
||||
description.website = description.website ?: project.findProperty("url")?.toString()
|
||||
description.author = description.author ?: project.findProperty("author")?.toString()
|
||||
description.libraries = description.libraries ?: libraries!!.resolvedConfiguration.firstLevelModuleDependencies
|
||||
.map { it.module.id.toString() }
|
||||
description.libraries = description.libraries ?: libraries!!.allDependencies
|
||||
.map { it.group + ":" + it.name + ":" + it.version }
|
||||
}
|
||||
|
||||
override fun validate(description: BukkitPluginDescription) {
|
||||
|
|
Loading…
Reference in a new issue