File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -44,10 +44,10 @@ plugins {
4444apply plugin : ' org.hibernate.orm'
4545
4646ext {
47- _group = " de.debuglevel "
48- _module = " greeter "
47+ _group = applicationGroup
48+ _module = applicationModule
4949 _mainClass = _group + " ." + _module + " .Application"
50- _title = " Greeter Microservice "
50+ _title = applicationTitle
5151}
5252
5353// application plugin configuration
@@ -176,9 +176,9 @@ kapt {
176176jar {
177177 // add Manifest to jar
178178 manifest {
179- attributes ' Implementation-Title' : applicationName ,
179+ attributes ' Implementation-Title' : applicationTitle ,
180180 ' Implementation-Version' : version,
181- ' Main-Class' : mainClassName
181+ ' Main-Class' : _mainClass
182182 }
183183}
184184
Original file line number Diff line number Diff line change 11# Application definition
2- group =de.debuglevel.greeter
2+ applicationGroup =de.debuglevel
3+ applicationModule =greeter
4+ applicationTitle =Greeter Microservice
35version =0.2.0-SNAPSHOT
46# other settings
57kotlin.code.style =official
You can’t perform that action at this time.
0 commit comments