updated version info

This commit is contained in:
Robinson 2021-03-10 14:25:20 +01:00
parent b7c2eba5fa
commit 05b3e4dc0d
2 changed files with 10 additions and 10 deletions

View File

@ -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

View File

@ -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 {