Replace the use of the deprecated 'bootJar' Gradle task, 'mainClassName' property with 'mainClass'.

This commit is contained in:
John Blum
2020-12-08 09:44:19 -08:00
parent f4eec7724d
commit e32fc75643
8 changed files with 9 additions and 9 deletions

View File

@@ -20,7 +20,7 @@ dependencies {
}
bootJar {
mainClassName = 'example.app.caching.session.http.BootGeodeHttpSessionCachingApplication'
mainClass = 'example.app.caching.session.http.BootGeodeHttpSessionCachingApplication'
}
bootRun {