Update jackson-databind-nullable to v0.2.9 (#22901) #92
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 Helidon v3 | |
| on: | |
| push: | |
| paths: | |
| - samples/client/petstore/java-helidon-client/v3/** | |
| - samples/server/petstore/java-helidon-server/v3/** | |
| - samples/server/others/java-helidon-server/v3/** | |
| pull_request: | |
| paths: | |
| - samples/client/petstore/java-helidon-client/v3/** | |
| - samples/server/petstore/java-helidon-server/v3/** | |
| - samples/server/others/java-helidon-server/v3/** | |
| jobs: | |
| build: | |
| name: Build Java Helidon | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| sample: | |
| - samples/client/petstore/java-helidon-client/v3/mp | |
| - samples/client/petstore/java-helidon-client/v3/se | |
| - samples/server/petstore/java-helidon-server/v3/mp | |
| - samples/server/petstore/java-helidon-server/v3/se | |
| - samples/server/others/java-helidon-server/v3/mp-format-test | |
| version: [17] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: ${{ matrix.version }} | |
| - name: Cache maven dependencies | |
| uses: actions/cache@v5 | |
| 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 --no-transfer-progress |