We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57b83ec commit 68c7ba9Copy full SHA for 68c7ba9
.github/workflows/ci.yml
@@ -31,6 +31,7 @@ jobs:
31
strategy:
32
matrix:
33
java-version: [ 11, 17, 21 ]
34
+ http-client: ["okhttp", "vertx", "jetty", "jdk"]
35
steps:
36
- uses: actions/checkout@v2
37
- name: Set up JDK ${{ matrix.java-version }}
@@ -47,7 +48,7 @@ jobs:
47
48
${{ runner.os }}-maven-
49
- name: Build with Maven
50
run: |
- mvn -B clean install javadoc:javadoc -Pgenerate-docs
51
+ mvn -B clean install javadoc:javadoc -Pgenerate-docs -Dfabric8.httpclinent.impl=${{ matrix.httpclient }}
52
if [[ $(git diff HEAD | wc -l) -gt 0 ]]; then
53
echo "Please generate the java doc via 'mvn clean install -DskipTests -Pgenerate-docs' again"
54
exit 1
0 commit comments