Updated version

master Version_2.20
Robinson 2023-01-26 00:15:31 +01:00
parent c9bf6f91fe
commit 866cc0cbb7
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
2 changed files with 35 additions and 12 deletions

28
LICENSE
View File

@ -13,13 +13,37 @@
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.
- Version - Java Semantic Versioning with exceptions.
[MIT License]
https://git.dorkbox.com/dorkbox/Version
Copyright 2020
Copyright 2023
Dorkbox LLC
G. Richard Bellamy
Kenduck
Larry Bordowitz <lbordowitz@yahoo-inc.com>
Martin Rüegg <martin.rueegg@bristolpound.org> <martin.rueegg@metaworx.ch>
Zafar Khaja <zafarkhaja@gmail.com>
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

View File

@ -25,7 +25,7 @@ plugins {
id("com.gradle.plugin-publish") version "1.1.0"
id("com.dorkbox.GradleUtils") version "3.9"
// id("com.dorkbox.Licensing") version "2.18"
id("com.dorkbox.Licensing") version "2.20"
id("com.dorkbox.VersionUpdate") version "2.6"
kotlin("jvm") version "1.7.0"
@ -36,7 +36,7 @@ object Extras {
// set for the project
const val description = "License definitions and legal management plugin for the Gradle build system"
const val group = "com.dorkbox"
const val version = "2.19.2"
const val version = "2.20"
// set as project.ext
const val name = "Gradle Licensing Plugin"
@ -53,14 +53,13 @@ GradleUtils.load("$projectDir/../../gradle.properties", Extras)
GradleUtils.defaults()
GradleUtils.compileConfiguration(JavaVersion.VERSION_1_8)
//licensing {
// license(License.APACHE_2) {
// description(Extras.description)
// author(Extras.vendor)
// url(Extras.url)
// }
//}
licensing {
license(License.APACHE_2) {
description(Extras.description)
author(Extras.vendor)
url(Extras.url)
}
}
repositories {
gradlePluginPortal()