Skip to content

Commit

Permalink
small updates
Browse files Browse the repository at this point in the history
  • Loading branch information
sonzo95 committed Nov 9, 2021
1 parent b5e7f25 commit 46b0abc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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)

Expand Down
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
kotlin.code.style=official
version=0.0.2

kotlin_version=1.5.31
ktor_version=1.6.1
Expand Down

0 comments on commit 46b0abc

Please sign in to comment.