Bump Jackson to 2.19.2 and databind-nullable to 0.2.7 (#22017) #1003
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: Java Client (Echo API) JDK8 | |
| on: | |
| push: | |
| paths: | |
| - samples/client/echo_api/java/apache-httpclient/** | |
| - samples/client/echo_api/java/feign-gson/** | |
| - samples/client/echo_api/java/okhttp-gson/** | |
| - samples/client/echo_api/java/resttemplate/** | |
| - samples/client/echo_api/java/resteasy/** | |
| pull_request: | |
| paths: | |
| - samples/client/echo_api/java/apache-httpclient/** | |
| - samples/client/echo_api/java/feign-gson/** | |
| - samples/client/echo_api/java/okhttp-gson/** | |
| - samples/client/echo_api/java/resteasy/** | |
| jobs: | |
| build: | |
| name: Build Java Client JDK8 | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| sample: | |
| # clients | |
| - samples/client/echo_api/java/apache-httpclient | |
| - samples/client/echo_api/java/feign-gson | |
| - samples/client/echo_api/java/okhttp-gson | |
| - samples/client/echo_api/java/resttemplate | |
| - samples/client/echo_api/java/resteasy | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 8 | |
| - name: Cache maven dependencies | |
| uses: actions/cache@v4 | |
| env: | |
| cache-name: maven-repository | |
| with: | |
| path: | | |
| ~/.m2 | |
| key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }} | |
| - name: Setup node.js | |
| uses: actions/setup-node@v5 | |
| - name: Run echo server | |
| run: | | |
| git clone https://github.com/wing328/http-echo-server -b openapi-generator-test-server | |
| (cd http-echo-server && npm install && npm start &) | |
| - name: Build | |
| working-directory: ${{ matrix.sample }} | |
| run: mvn clean package --no-transfer-progress |