forked from loafle/openapi-generator-original
* - Upgrade swagger-ui to 4.4.1 - Bring homeController.mustache up-to-date - Main class is now OpenApiGeneratorApplication - Introduce SpringBootTest.mustache - Remove option swaggerDocketConfig/openapiDocketConfig in favor of documentationProvider. * Generate Samples * Restore generator-online classes Fix spring-mvc builds * Generate Samples * Do not generate SpringFoxConfiguration.java when reactive ist set. * Fix generation of SpringFoxConfiguration * Generate Documentation * Reactive support: add dependency management for springdoc-openapi-webflux-ui * Generate Samples * Change SpringBootApplication to OpenApiGeneratorApplication * Generate Samples * Implement SwaggerUIFeatures in SpringCodegen * Generate Samples * Add useSwaggerUI: true to some test configs * Generate Samples * Update Documentation * Update Documentation * Update README.mustache * Generate Samples * useSwaggerUI is true by default * Generate Samples * Update Documentation * Add deprecation warnings to cli opts; Log a deprecation warning * Update Documentation * Generate Samples * Remove spring-mvc library * Remove spring-mvc from project and CI configs * Check whether the selected documentation provider requires us to boostrap swagger-ui. * Generate Samples * Generate samples * Generate samples * Generate samples
58 lines
2.1 KiB
YAML
58 lines
2.1 KiB
YAML
name: Samples Java Spring
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'samples/server/petstore/spring*/**'
|
|
- 'samples/openapi3/server/petstore/spring*/**'
|
|
pull_request:
|
|
paths:
|
|
- 'samples/server/petstore/spring*/**'
|
|
- 'samples/openapi3/server/petstore/spring*/**'
|
|
jobs:
|
|
build:
|
|
name: Build Java Spring
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
sample:
|
|
# clients
|
|
- samples/client/petstore/spring-cloud
|
|
- samples/openapi3/client/petstore/spring-cloud
|
|
- samples/client/petstore/spring-cloud-date-time
|
|
- samples/openapi3/client/petstore/spring-cloud-date-time
|
|
- samples/client/petstore/spring-stubs
|
|
- samples/openapi3/client/petstore/spring-stubs
|
|
- samples/openapi3/client/petstore/spring-stubs-skip-default-interface
|
|
# servers
|
|
- samples/server/petstore/springboot
|
|
- samples/openapi3/server/petstore/springboot
|
|
- samples/server/petstore/springboot-beanvalidation
|
|
- samples/server/petstore/springboot-useoptional
|
|
- samples/openapi3/server/petstore/springboot-useoptional
|
|
- samples/server/petstore/springboot-reactive
|
|
- samples/openapi3/server/petstore/springboot-reactive
|
|
- samples/server/petstore/springboot-implicitHeaders
|
|
- samples/openapi3/server/petstore/springboot-implicitHeaders
|
|
- samples/server/petstore/springboot-delegate
|
|
- samples/openapi3/server/petstore/springboot-delegate
|
|
- samples/server/petstore/spring-boot-nullable-set
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-java@v2
|
|
with:
|
|
distribution: 'temurin'
|
|
java-version: 8
|
|
- name: Cache maven dependencies
|
|
uses: actions/cache@v2.1.7
|
|
env:
|
|
cache-name: maven-repository
|
|
with:
|
|
path: |
|
|
~/.m2
|
|
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
|
|
- name: Build
|
|
working-directory: ${{ matrix.sample }}
|
|
run: mvn clean package
|