Updated log on startup, update Gradle to 5.3

This commit is contained in:
nathan 2019-03-21 10:47:52 +01:00
parent b6e41e405a
commit b4668ad895
1 changed files with 5 additions and 2 deletions

View File

@ -15,7 +15,10 @@
*/ */
import Build_gradle.Extras.group
import Build_gradle.Extras.url
import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask
import org.jetbrains.kotlin.js.translate.context.Namer.kotlin
import java.time.Instant import java.time.Instant
import java.util.* import java.util.*
import kotlin.reflect.KMutableProperty import kotlin.reflect.KMutableProperty
@ -29,7 +32,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
@ -350,6 +353,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.2.1" gradleVersion = "5.3"
distributionUrl = distributionUrl.replace("bin", "all") distributionUrl = distributionUrl.replace("bin", "all")
} }