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 4990f9b commit 24cd151Copy full SHA for 24cd151
.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@v4
37
- name: Set up JDK ${{ matrix.java-version }}
@@ -41,7 +42,7 @@ jobs:
41
42
cache: 'maven'
43
- name: Build with Maven
44
run: |
- mvn -B clean install javadoc:javadoc -Pgenerate-docs
45
+ mvn -B clean install javadoc:javadoc -Pgenerate-docs -Dfabric8.httpclinent.impl=${{ matrix.httpclient }}
46
if [[ $(git diff HEAD | wc -l) -gt 0 ]]; then
47
echo "Please generate the java doc via 'mvn clean install -DskipTests -Pgenerate-docs' again"
48
exit 1
0 commit comments