I have weird dependency in springboot app that expects itself to be loaded as jar. springboot gradle plugin creates fatJar. it doesn't work.
Is it possible to build springboot app as springboot jar with application thin jar and a library folder with all dependencies? I don't want to smash them in single jar.
I'm using
plugins {
id 'java'
id 'org.springframework.boot' version '2.2.6.RELEASE'
}
apply plugin: 'io.spring.dependency-management'