Updated log on startup, update Gradle to 5.3

This commit is contained in:
nathan 2019-03-21 10:47:52 +01:00
parent ebb5677e4b
commit ebf0831e5f

View File

@ -33,7 +33,7 @@ import kotlin.reflect.full.declaredMemberProperties
////// RELEASE : sonatype / maven central, <PUBLISHING - publish> then <RELEASE - closeAndReleaseRepository> ////// RELEASE : sonatype / maven central, <PUBLISHING - publish> then <RELEASE - closeAndReleaseRepository>
/////////////////////////////// ///////////////////////////////
println("\tGradle ${project.gradle.gradleVersion}") println("\tGradle ${project.gradle.gradleVersion} on Java ${JavaVersion.current()}")
plugins { plugins {
java java
@ -526,6 +526,6 @@ tasks.named<DependencyUpdatesTask>("dependencyUpdates") {
///// Run this task, then refresh the gradle project ///// Run this task, then refresh the gradle project
/////////////////////////////// ///////////////////////////////
val wrapperUpdate by tasks.creating(Wrapper::class) { val wrapperUpdate by tasks.creating(Wrapper::class) {
gradleVersion = "5.1.1" gradleVersion = "5.3"
distributionUrl = distributionUrl.replace("bin", "all") distributionUrl = distributionUrl.replace("bin", "all")
} }