File tree Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,15 @@ tasks.check {
34
34
dependsOn(" itTest" )
35
35
}
36
36
37
+ tasks.processResources {
38
+ filesMatching(" **/micronaut-banner.txt" ) {
39
+ filter { line ->
40
+ var updated = line.replace(" \$ {application.version}" , project.version.toString())
41
+ updated.replace(" \$ {micronaut.version}" , properties.get(" micronautVersion" ).toString())
42
+ }
43
+ }
44
+ }
45
+
37
46
dependencies {
38
47
annotationProcessor(mn.micronaut.openapi.asProvider())
39
48
annotationProcessor(mn.micronaut.http.validation)
Original file line number Diff line number Diff line change
1
+ _____ _ _ _
2
+ | __ \| | | | (_)
3
+ | |__) | | ___ __| | __ _ ___ _ __ _ ___
4
+ | ___/| |/ _ \/ _` |/ _` |/ _ \ '__| | |/ _ \
5
+ | | | | __/ (_| | (_| | __/ | _| | (_) |
6
+ |_| |_|\___|\__,_|\__, |\___|_| (_)_|\___/
7
+ __/ |
8
+ |___/
9
+
10
+ :: Pledger.io :: (v${application.version})
11
+
12
+ Your Personal Finance Tracker
13
+
14
+ [38;5;240mBuild using Micronaut v${micronaut.version}.[0m
You can’t perform that action at this time.
0 commit comments