Updated version + license inf

This commit is contained in:
nathan 2020-08-08 00:13:59 +02:00
parent 6ab00c7a72
commit b2ed955f58
2 changed files with 20 additions and 10 deletions

20
LICENSE
View File

@ -1,5 +1,15 @@
- GradlePublish -
https://git.dorkbox.com/dorkbox/GradlePublish
Copyright 2020 - The Apache Software License, Version 2.0
Dorkbox LLC
Gradle Plugin to publish projects to the sonatype repository
- GradlePublish -
[The Apache Software License, Version 2.0]
https://git.dorkbox.com/dorkbox/GradlePublish
Copyright 2020
Dorkbox LLC
Gradle Plugin to publish projects to the sonatype repository
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,9 +25,9 @@ plugins {
id("com.gradle.plugin-publish") version "0.12.0"
id("com.dorkbox.Licensing") version "2.0"
id("com.dorkbox.VersionUpdate") version "1.7"
id("com.dorkbox.GradleUtils") version "1.8"
id("com.dorkbox.Licensing") version "2.2"
id("com.dorkbox.VersionUpdate") version "2.0"
id("com.dorkbox.GradleUtils") version "1.8.12"
kotlin("jvm") version "1.3.72"
}
@ -36,7 +36,7 @@ object Extras {
// set for the project
const val description = "Gradle Plugin to publish projects to the sonatype repository"
const val group = "com.dorkbox"
const val version = "1.3"
const val version = "1.4"
// set as project.ext
const val name = "Gradle Publish"
@ -59,9 +59,9 @@ GradleUtils.fixIntellijPaths()
licensing {
license(License.APACHE_2) {
description(Extras.description)
author(Extras.vendor)
url(Extras.url)
note(Extras.description)
}
}