From 05b3e4dc0d6589952a6b3e0eb00e82cc258eed33 Mon Sep 17 00:00:00 2001 From: Robinson Date: Wed, 10 Mar 2021 14:25:20 +0100 Subject: [PATCH] updated version info --- LICENSE | 6 +++--- build.gradle.kts | 14 +++++++------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/LICENSE b/LICENSE index 936edcc..356e9d4 100644 --- a/LICENSE +++ b/LICENSE @@ -1,7 +1,7 @@ - GradleUtils - Gradle Plugin to manage various Gradle tasks, such as updating gradle and dependencies [The Apache Software License, Version 2.0] https://git.dorkbox.com/dorkbox/GradleUtils - Copyright 2020 + Copyright 2021 Dorkbox LLC Extra license information @@ -16,12 +16,12 @@ - Gradle Versions Plugin - This plugin provides a task to determine which dependencies have updates [The Apache Software License, Version 2.0] https://github.com/ben-manes/gradle-versions-plugin - Copyright 2020 + Copyright 2021 Ben Manes - JSON in Java - A light-weight language independent data interchange format. [The JSON License] https://github.com/stleary/JSON-java https://www.json.org/json-en.html - Copyright 2020 + Copyright 2021 JSON.org diff --git a/build.gradle.kts b/build.gradle.kts index f6443af..ea7f46c 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -24,18 +24,18 @@ plugins { id("com.gradle.plugin-publish") version "0.12.0" - id("com.dorkbox.Licensing") version "2.5" - id("com.dorkbox.VersionUpdate") version "2.0" - id("com.dorkbox.GradleUtils") version "1.11" + id("com.dorkbox.Licensing") version "2.5.4" + id("com.dorkbox.VersionUpdate") version "2.1" + id("com.dorkbox.GradleUtils") version "1.12" - kotlin("jvm") version "1.4.0" + kotlin("jvm") version "1.4.31" } object Extras { // set for the project const val description = "Gradle Plugin to manage various Gradle tasks, such as updating gradle and dependencies" const val group = "com.dorkbox" - const val version = "1.12" + const val version = "1.13" // set as project.ext const val name = "Gradle Utils" @@ -86,10 +86,10 @@ dependencies { compileOnly("org.jetbrains.kotlin:kotlin-gradle-plugin") // setup checking for the latest version of a plugin or dependency - implementation("com.github.ben-manes:gradle-versions-plugin:0.29.0") + implementation("com.github.ben-manes:gradle-versions-plugin:0.38.0") // for parsing JSON - implementation("org.json:json:20200518") + implementation("org.json:json:20210307") } tasks.jar.get().apply {