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 b9a34b3 commit eedb784Copy full SHA for eedb784
.github/workflows/ci.yml
@@ -34,6 +34,7 @@ jobs:
34
strategy:
35
matrix:
36
java-version: [ 11, 17, 21 ]
37
+ http-client: ["okhttp", "vertx", "jetty", "jdk"]
38
steps:
39
- uses: actions/checkout@v4
40
- name: Set up JDK ${{ matrix.java-version }}
@@ -44,7 +45,7 @@ jobs:
44
45
cache: 'maven'
46
- name: Build with Maven
47
run: |
- mvn -B clean install javadoc:javadoc -Pgenerate-docs
48
+ mvn -B clean install javadoc:javadoc -Pgenerate-docs -Dfabric8.httpclinent.impl=${{ matrix.httpclient }}
49
if [[ $(git diff HEAD | wc -l) -gt 0 ]]; then
50
echo "Please generate the java doc via 'mvn clean install -DskipTests -Pgenerate-docs' again"
51
exit 1
0 commit comments