From b0aa5d4e13c4f818738c9d549a150db3b6eae783 Mon Sep 17 00:00:00 2001 From: Robinson Date: Mon, 7 Aug 2023 18:45:26 -0600 Subject: [PATCH] updated build deps --- build.gradle.kts | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 22bfc3e..c4ee4e8 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,5 +1,5 @@ /* - * Copyright 2018 dorkbox, llc + * Copyright 2023 dorkbox, llc * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -26,9 +26,9 @@ gradle.startParameter.showStacktrace = ShowStacktrace.ALWAYS_FULL // always sh gradle.startParameter.warningMode = WarningMode.All plugins { - id("com.dorkbox.GradleUtils") version "3.13" - id("com.dorkbox.Licensing") version "2.22" - id("com.dorkbox.VersionUpdate") version "2.7" + id("com.dorkbox.GradleUtils") version "3.17" + id("com.dorkbox.Licensing") version "2.25" + id("com.dorkbox.VersionUpdate") version "2.8" id("com.dorkbox.GradlePublish") version "1.18" kotlin("jvm") version "1.8.0" @@ -46,8 +46,6 @@ object Extras { const val vendor = "Dorkbox LLC" const val vendorUrl = "https://dorkbox.com" const val url = "https://git.dorkbox.com/dorkbox/Notify" - - val buildDate = Instant.now().toString() } /////////////////////////////// @@ -95,7 +93,7 @@ tasks.jar.get().apply { attributes["Specification-Vendor"] = Extras.vendor attributes["Implementation-Title"] = "${Extras.group}.${Extras.id}" - attributes["Implementation-Version"] = Extras.buildDate + attributes["Implementation-Version"] = GradleUtils.now() attributes["Implementation-Vendor"] = Extras.vendor } }