fix(java): place bean-validation @Valid on the type argument instead of the container (HV000271) #1118
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Samples Java Client JDK17 | |
| on: | |
| push: | |
| paths: | |
| - samples/client/petstore/java/resttemplate-jakarta/** | |
| - samples/client/petstore/java/resttemplate-springBoot4-*/** | |
| - samples/client/petstore/java/webclient-jakarta/** | |
| - samples/client/petstore/java/restclient-*/** | |
| - samples/client/petstore/java/native-jackson3/** | |
| - samples/client/petstore/java/apache-httpclient-jackson3/** | |
| - samples/client/petstore/java/native-jackson3-jspecify/** | |
| - samples/client/petstore/java/restclient-springBoot4-jackson3-jspecify/** | |
| - samples/client/others/java/webclient-sealedInterface/** | |
| - samples/client/others/java/webclient-sealedInterface_3_1/** | |
| - samples/client/petstore/java/webclient-useSingleRequestParameter/** | |
| - samples/client/others/java/restclient-enum-in-multipart/** | |
| - samples/client/others/java/restclient-sealedInterface/** | |
| - samples/client/others/java/restclient-useAbstractionForFiles/** | |
| - samples/client/petstore/java/jersey3-oneOf/** | |
| - samples/client/petstore/java/jersey3-jackson3/** | |
| - samples/client/petstore/java/microprofile-oneof-sealed/** | |
| pull_request: | |
| paths: | |
| - samples/client/petstore/java/resttemplate-jakarta/** | |
| - samples/client/petstore/java/resttemplate-springBoot4-*/** | |
| - samples/client/petstore/java/webclient-jakarta/** | |
| - samples/client/petstore/java/restclient-*/** | |
| - samples/client/petstore/java/native-jackson3/** | |
| - samples/client/petstore/java/apache-httpclient-jackson3/** | |
| - samples/client/petstore/java/native-jackson3-jspecify/** | |
| - samples/client/petstore/java/restclient-springBoot4-jackson3-jspecify/** | |
| - samples/client/others/java/webclient-sealedInterface/** | |
| - samples/client/others/java/webclient-sealedInterface_3_1/** | |
| - samples/client/petstore/java/webclient-useSingleRequestParameter/** | |
| - samples/client/others/java/restclient-enum-in-multipart/** | |
| - samples/client/others/java/restclient-sealedInterface/** | |
| - samples/client/others/java/restclient-useAbstractionForFiles/** | |
| - samples/client/petstore/java/jersey3-oneOf/** | |
| - samples/client/petstore/java/jersey3-jackson3/** | |
| - samples/client/petstore/java/microprofile-oneof-sealed/** | |
| jobs: | |
| build: | |
| name: Build Java Client JDK17 | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| sample: | |
| # clients | |
| - samples/client/petstore/java/resttemplate-jakarta | |
| - samples/client/petstore/java/resttemplate-springBoot4-jackson2 | |
| - samples/client/petstore/java/resttemplate-springBoot4-jackson3 | |
| - samples/client/petstore/java/webclient-jakarta | |
| - samples/client/petstore/java/restclient | |
| - samples/client/petstore/java/restclient-nullable-arrays | |
| - samples/client/petstore/java/restclient-springBoot4-jackson2 | |
| - samples/client/petstore/java/restclient-springBoot4-jackson3 | |
| - samples/client/petstore/java/restclient-springBoot4-jackson3-jspecify | |
| - samples/client/petstore/java/native-jackson3-jspecify | |
| - samples/client/petstore/java/restclient-swagger2 | |
| - samples/client/petstore/java/restclient-useSingleRequestParameter | |
| - samples/client/petstore/java/restclient-useSingleRequestParameter-static | |
| - samples/client/petstore/java/native-jackson3 | |
| - samples/client/petstore/java/apache-httpclient-jackson3 | |
| - samples/client/others/java/webclient-sealedInterface | |
| - samples/client/others/java/webclient-sealedInterface_3_1 | |
| - samples/client/petstore/java/webclient-springBoot4-jackson3 | |
| - samples/client/petstore/java/webclient-useSingleRequestParameter | |
| - samples/client/others/java/restclient-enum-in-multipart | |
| - samples/client/others/java/restclient-sealedInterface | |
| - samples/client/others/java/restclient-useAbstractionForFiles | |
| - samples/client/petstore/java/jersey3-oneOf | |
| - samples/client/petstore/java/jersey3-jackson3 | |
| - samples/client/petstore/java/microprofile-oneof-sealed | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 17 | |
| cache: gradle | |
| - name: Cache maven dependencies | |
| uses: actions/cache@v6 | |
| env: | |
| cache-name: maven-repository | |
| with: | |
| path: | | |
| ~/.m2 | |
| key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }} | |
| - name: Build with Maven | |
| working-directory: ${{ matrix.sample }} | |
| run: mvn clean package --no-transfer-progress | |
| - name: Cache gradle dependencies | |
| uses: actions/cache@v6 | |
| env: | |
| cache-name: gradle-caches | |
| with: | |
| path: ~/.gradle/caches | |
| key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/*.gradle', '**/*.gradle.kts') }} | |
| - name: Cache gradle wrapper | |
| uses: actions/cache@v6 | |
| env: | |
| cache-name: gradle-wrapper | |
| with: | |
| path: ~/.gradle/wrapper | |
| key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }} | |
| - name: Build | |
| working-directory: ${{ matrix.sample }} | |
| # the microprofile library does not generate a Gradle build; skip samples without a wrapper | |
| if: ${{ hashFiles(format('{0}/gradlew', matrix.sample)) != '' }} | |
| run: /bin/sh gradlew build -x test --no-daemon |