updated version

master Version_3.5
Robinson 2023-01-02 15:44:43 +01:00
parent d5fbe31ee7
commit 5cab54d32f
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
2 changed files with 38 additions and 7 deletions

34
LICENSE
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 2022
Copyright 2023
Dorkbox LLC
Extra license information
@ -17,9 +17,39 @@
[The JSON License]
https://github.com/stleary/JSON-java
https://www.json.org/json-en.html
Copyright 2022
Copyright 2023
JSON.org
- OS - Information about the system, Java runtime, OS, Window Manager, and Desktop Environment.
[The Apache Software License, Version 2.0]
https://git.dorkbox.com/dorkbox/OS
Copyright 2022
Dorkbox LLC
Extra license information
- Kotlin -
[The Apache Software License, Version 2.0]
https://github.com/JetBrains/kotlin
Copyright 2020
JetBrains s.r.o. and Kotlin Programming Language contributors
Kotlin Compiler, Test Data+Libraries, and Tools repository contain third-party code, to which different licenses may apply
See: https://github.com/JetBrains/kotlin/blob/master/license/README.md
- Updates - Software Update Management
[The Apache Software License, Version 2.0]
https://git.dorkbox.com/dorkbox/Updates
Copyright 2021
Dorkbox LLC
Extra license information
- Kotlin -
[The Apache Software License, Version 2.0]
https://github.com/JetBrains/kotlin
Copyright 2020
JetBrains s.r.o. and Kotlin Programming Language contributors
Kotlin Compiler, Test Data+Libraries, and Tools repository contain third-party code, to which different licenses may apply
See: https://github.com/JetBrains/kotlin/blob/master/license/README.md
- Version - Java Semantic Versioning with exceptions. Minor/Patch number optional and build-after-final-dot (minor/patch) permitted.
[MIT License]
https://git.dorkbox.com/dorkbox/Version

View File

@ -23,9 +23,9 @@ plugins {
id("com.gradle.plugin-publish") version "1.1.0"
id("com.dorkbox.Licensing") version "2.13"
id("com.dorkbox.Licensing") version "2.17"
id("com.dorkbox.VersionUpdate") version "2.5"
id("com.dorkbox.GradleUtils") version "3.2"
id("com.dorkbox.GradleUtils") version "3.4"
kotlin("jvm") version "1.7.20"
}
@ -34,7 +34,7 @@ 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 = "3.4"
const val version = "3.5"
// set as project.ext
const val name = "Gradle Utils"
@ -51,7 +51,8 @@ object Extras {
GradleUtils.load("$projectDir/../../gradle.properties", Extras)
GradleUtils.fixIntellijPaths()
GradleUtils.defaultResolutionStrategy()
GradleUtils.compileConfiguration(JavaVersion.VERSION_11)
GradleUtils.compileConfiguration(JavaVersion.VERSION_1_8)
licensing {
license(License.APACHE_2) {
@ -85,7 +86,7 @@ dependencies {
compileOnly("org.jetbrains.kotlin:kotlin-gradle-plugin")
// for easier OS identification
api("com.dorkbox:OS:1.0")
implementation("com.dorkbox:OS:1.1")
// for parsing JSON
implementation("org.json:json:20220924")