Google Standard App Engine has a limit of roughly 35MB for its application deployment. I wanted to deploy a Spring Boot based application to GAE, but just by referencing
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
runtimeOnly 'com.h2database:h2'
}
the app already exceeds 40MB. Is there a way to let App Engine know to fetch these files during run time rather than compiling them into one big war file?

