| plugins { | 
 |     id "java-library" | 
 |     id "org.springframework.boot" | 
 | } | 
 |  | 
 | jar { | 
 |     enabled = true | 
 |     archiveFileName = "${project.name}-${buildVersion}.${archiveExtension.getOrElse('.jar')}" | 
 |     manifest { | 
 |         attributes('Implementation-Title': project.name, | 
 |                 'Implementation-Version': buildVersion) | 
 |     } | 
 | } | 
 | println("Build Version: $buildVersion") | 
 | bootJar { | 
 |     enabled = false | 
 | } | 
 |  | 
 | dependencies { | 
 |     implementation(":multi-tenant-core") | 
 |     implementation "org.springframework.boot:spring-boot-autoconfigure" | 
 |     implementation "commons-beanutils:commons-beanutils:${beanutilsVersion}" | 
 |     implementation "commons-codec:commons-codec:${codecVersion}" | 
 |     implementation "org.apache.commons:commons-lang3:${lang3Version}" | 
 |  | 
 |     compileOnly "org.projectlombok:lombok:${lombokVersion}" | 
 |     annotationProcessor "org.projectlombok:lombok:${lombokVersion}" | 
 | } | 
 |  |