From 46b0abc7f36479f438af6d3ff666ff17f5ddc152 Mon Sep 17 00:00:00 2001 From: Stefano Sonzogni Date: Tue, 9 Nov 2021 22:01:04 +0100 Subject: [PATCH] small updates --- README.md | 2 +- build.gradle | 5 +++-- gradle.properties | 1 - 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b88600c..f980432 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Build Status][github-actions-svg]][github-actions] -This walkthrough will explain you how to correctly create a microservice that returns an hello message from the DevOps Console. +This walkthrough will explain you how to correctly create a microservice that returns a hello message from the DevOps Console. ## Create a microservice diff --git a/build.gradle b/build.gradle index 9024098..0a24b40 100644 --- a/build.gradle +++ b/build.gradle @@ -11,7 +11,8 @@ plugins { id('nebula.lint') version "17.1.0" } -version '0.2.3' +// Do not delete, this will get updated automatically when running the version command +version '0.0.1' // Do not add dependencies here! Bad practice allprojects { @@ -50,7 +51,7 @@ class UpdateVersion extends DefaultTask { getLogger().quiet("Updating files to version $tag") String oldTag = project.version - getLogger().quiet("Updating build.gradle file") + getLogger().quiet("Updating build.gradle file, updating from version $oldTag to $tag") String updatedBuildGradle = project.buildFile.getText().replaceFirst("version '$oldTag'", "version '$tag'") project.buildFile.setText(updatedBuildGradle) diff --git a/gradle.properties b/gradle.properties index 2677cf5..499e119 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,4 @@ kotlin.code.style=official -version=0.0.2 kotlin_version=1.5.31 ktor_version=1.6.1