Skip to content

Commit

Permalink
Update build script to make output file name generate better
Browse files Browse the repository at this point in the history
  • Loading branch information
AtriusX committed Nov 20, 2021
1 parent d8359e6 commit 9577d74
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
/*
* This file was generated by the Gradle 'init' task.
*/

plugins {
id 'java'
id 'idea'
id 'org.jetbrains.kotlin.jvm' version '1.6.0'
id 'com.github.johnrengelman.shadow' version '6.0.0'
}

String pluginVersion = '1.1.0'

repositories {
mavenCentral()
maven {
Expand All @@ -22,7 +20,7 @@ dependencies {
}

group = 'xyz.atrius'
version = '1.1.0'
version = pluginVersion
description = 'Waystones'
sourceCompatibility = '1.8'

Expand Down Expand Up @@ -54,4 +52,6 @@ compileTestKotlin {

shadowJar {
minimize()
archiveClassifier.set('')
archiveVersion.set(pluginVersion)
}

0 comments on commit 9577d74

Please sign in to comment.