Updated version info. moved kotlin dependencies to compileOnly to not force kotlin versions in other projects

master
nathan 2020-08-29 10:01:28 +02:00
parent 3fad1e0357
commit d4920ccf31
1 changed files with 6 additions and 5 deletions

View File

@ -25,11 +25,11 @@ plugins {
id("com.gradle.plugin-publish") version "0.12.0"
id("com.dorkbox.Licensing") version "2.4"
id("com.dorkbox.Licensing") version "2.5"
id("com.dorkbox.VersionUpdate") version "2.0"
id("com.dorkbox.GradleUtils") version "1.10"
id("com.dorkbox.GradleUtils") version "1.12"
kotlin("jvm") version "1.3.61"
kotlin("jvm") version "1.4.0"
}
@ -37,7 +37,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.4"
const val version = "2.5"
// set as project.ext
const val name = "Gradle Licensing Plugin"
@ -92,8 +92,9 @@ repositories {
}
dependencies {
// compile only, so we dont force kotlin version info into dependencies
// the kotlin version is taken from the plugin, so it is not necessary to set it here
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin")
compileOnly("org.jetbrains.kotlin:kotlin-gradle-plugin")
implementation("com.dorkbox:Version:2.4")
}