[java] [restclient] Add support for a token supplier to OAuth based RestClient clients #591
This file contains 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/webclient-jakarta/** | |
- samples/client/petstore/java/restclient-*/** | |
pull_request: | |
paths: | |
- samples/client/petstore/java/resttemplate-jakarta/** | |
- samples/client/petstore/java/webclient-jakarta/** | |
- samples/client/petstore/java/restclient-*/** | |
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/webclient-jakarta | |
- samples/client/petstore/java/restclient | |
- samples/client/petstore/java/restclient-nullable-arrays | |
- samples/client/petstore/java/restclient-swagger2 | |
- samples/client/petstore/java/restclient-useSingleRequestParameter | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
- 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: Build with Maven | |
working-directory: ${{ matrix.sample }} | |
run: mvn clean package --no-transfer-progress | |
- name: Cache gradle dependencies | |
uses: actions/cache@v4 | |
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@v4 | |
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 }} | |
run: ./gradlew build -x test |