fabric8io / mockwebserver

An extension of okhttp's mockwebserver, that provides a DSL and is easier to use
Apache License 2.0
113 stars 38 forks source link

Bump sundrio version to 0.40.1 #60

Closed iocanel closed 2 years ago

iocanel commented 3 years ago

It would be nice to have the project aligned with the rest of the ecosystem in terms of dependency versions.

apupier commented 2 years ago

it will also avoid to hit this kind of issue https://github.com/kubernetes-client/java/issues/436 even if a workaround seems to be

        <dependency>
            <groupId>io.fabric8</groupId>
            <artifactId>kubernetes-server-mock</artifactId>
            <version>${kubernetes.client.version}</version>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <groupId>io.sundr</groupId>
                    <artifactId>builder-annotations</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
apupier commented 2 years ago

removing the sundrio dependency will solve th eproblem too https://github.com/fabric8io/mockwebserver/pull/61 :-)