You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add ability to set forkProperties on spring boot startup
Allows for 1 of 2 options
1. A static string of the properties you want to set
openApi {
forkProperties = "-Dspring.profiles.active=special"
}
2. You can simply pass the values from whatever you sent to gradle
gw clean generateOpenApiDocs -Dspring.profiles.active=special
openApi {
forkProperties = System.properties
}
0 commit comments