I'm trying to use Springdoc on a multi-module gradle project, and I'm not able to make it work. Has someone already done something similar ?
My Gradle project structure looks like this:
My project
- Application
- module1
- api
- domain
- repository
- module2
- sames as module1
the Application module has dependencies on each module project
and
implementation group: 'org.springframework.boot', name: 'spring-boot-starter', version: springBootVersion
on API submodule there is:
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: springStarterWeb
implementation group: 'org.springdoc', name: 'springdoc-openapi-ui', version: '1.4.2'