| # Test OpenAPI Configuration Properties |
| # Used by OpenApiConfigurationTest for testing property loading |
| |
| # Basic API Information |
| openapi.title=Test API Title |
| openapi.description=Test API Description from Properties File |
| openapi.version=2.5.0 |
| |
| # Contact Information |
| openapi.contact.name=Test Contact |
| openapi.contact.email=test@example.com |
| openapi.contact.url=https://test.example.com |
| |
| # License Information |
| openapi.license.name=Test License |
| openapi.license.url=https://test.example.com/license |
| |
| # Configuration Flags |
| openapi.readAllResources=false |
| openapi.prettyPrint=true |
| openapi.swaggerUi.enabled=true |
| openapi.useContextBasedConfig=true |
| |
| # Resource Configuration |
| openapi.resourcePackages=com.test.api,com.test.services |
| openapi.resourceClasses=com.test.api.TestService |
| |
| # Swagger UI Configuration |
| openapi.swaggerUi.version=4.18.0 |