Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use quarkus.io kotlin extension does not provide restassured kotlin extension #8713

Closed
jphautin opened this issue Apr 20, 2020 · 1 comment
Closed
Labels
area/kotlin kind/enhancement New feature or request
Milestone

Comments

@jphautin
Copy link

jphautin commented Apr 20, 2020

Describe the bug
I am using quarkus kotlin extension and the dependency management does not provide version for the io.restassured:kotlin-extensions. I would expect that the version could be provided as io.restassured:rest-assured version is provided.

The workaround is to add the dependency by hand but in this case I have to ensure on each upgrade of quarkus that the version did not change.

Expected behavior
(Describe the expected behavior clearly and concisely.)

I would expect the version to be manage by the bom and to have a snippet

        <dependency>
            <groupId>io.rest-assured</groupId>
            <artifactId>kotlin-extensions</artifactId>
            <scope>test</scope>
        </dependency>

added when I use the kotlin extension

Actual behavior
(Describe the actual behavior clearly and concisely.)
No management of this extension.

the workaround, to be added in the pom.xml:

        <dependency>
            <groupId>io.rest-assured</groupId>
            <artifactId>kotlin-extensions</artifactId>
            <version>4.3.0</version>
            <scope>test</scope>
        </dependency>

Environment
kotlin version: 1.3.70/1.3.71
quarkus version: 1.3.1/1.3.2
restassured version : provided by the bom : 4.3.0
Java : 11
OpenJDK Version (windows only): openjdk version "11.0.6" 2020-01-14 (build 11.0.6+10, mixed mode)
GraalVM Version (linux only) : 20.0.0
OS: windows/Linux

@jphautin jphautin added the kind/bug Something isn't working label Apr 20, 2020
@geoand geoand added kind/enhancement New feature or request and removed kind/bug Something isn't working labels Apr 21, 2020
@gsmet gsmet closed this as completed in 8a92e19 Apr 21, 2020
@gsmet gsmet added this to the 1.4.0.Final milestone Apr 21, 2020
gsmet pushed a commit to gsmet/quarkus that referenced this issue Apr 21, 2020
@jphautin
Copy link
Author

thanks for the quick fix

gytis pushed a commit to gytis/quarkus that referenced this issue Apr 22, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/kotlin kind/enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

4 participants