Compare commits

..

4 Commits

Author SHA1 Message Date
Tom Hicks
7c3c703fc9 Changes version tagging for releases. 2025-07-16 03:21:26 -07:00
Tom Hicks
815d0be2d8 Makes the release plugin also build the release jar. 2025-07-16 03:20:31 -07:00
Tom Hicks
42e8f6078e [Gradle Release Plugin] - new version commit: '0.2.2-SNAPSHOT'. 2025-07-16 03:20:07 -07:00
Tom Hicks
c0ac52b40a Removes version from build.gradle. 2025-07-16 03:10:10 -07:00

View File

@@ -6,7 +6,6 @@ plugins {
}
group = 'com.majinnaibu.minecraft.plugins'
version = '0.2.1-SNAPSHOT'
description = "ScoreKeeper"
tasks.withType(JavaCompile).configureEach {
@@ -44,12 +43,13 @@ publishing {
}
release {
buildTasks = ['build']
failOnSnapshotDependencies = true
ignoredSnapshotDependencies = [
"io.papermc.paper:paper-api"
]
revertOnFail = true
tagTemplate = '$version'
tagTemplate = 'v$version'
versionPropertyFile = 'gradle.properties'
}