Gradle: find resolved version of a dependency imported with +

Daniel Taub :

I want to print the last version of a dependency in gradle.

I added my dependency in this way :

compile 'test:test:+'

now I want to print the version of my dependency, because I want to know which version I'm using.

I'm using it in this way :

gradle dependencyInsight --configuration compile --dependency test:test

But my output is this :

+--- test:test:+ -> project : (*)

Is there anyway I can get the real version of my dependency and not the +?

azizbekian :

Within app module's build.gradle I've imported Square's Moshi library as follows:


    dependencies {
        compile 'com.squareup.moshi:moshi:+'
    }

Then I executed following command in terminal:


./gradlew app:dependencyInsight --configuration compile --dependency com.squareup.moshi:moshi

Here's the output that I've received:

enter image description here

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=426689&siteId=1