From 1b76a300f841ed67d718c5178eafb0868613017f Mon Sep 17 00:00:00 2001 From: Sha Sha Chu Date: Sat, 12 Oct 2019 22:17:32 -0700 Subject: [PATCH] Add version into gradle-built JARs (#614) --- ktlint/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/ktlint/build.gradle b/ktlint/build.gradle index 03b13f5949..65cb075668 100644 --- a/ktlint/build.gradle +++ b/ktlint/build.gradle @@ -7,6 +7,7 @@ plugins { jar { manifest { attributes 'Main-Class': 'com.pinterest.ktlint.Main' + attributes 'Implementation-Version': project.property('VERSION_NAME') } }