-1
I have this scenario in Gradle (build.Radle)
implementation ("br.com.mycompany.feature:feature:$mycompanyFeatureVersion") {
transitive = true
exclude group: 'br.com.mycompany', module: 'comons'
}
I need to point the path of "Feature" in my dependencies, I am working on my machine, but I can’t change $mycompanyFeatureVersion. How can I do that? I can’t point the way to . jar directly, that’s bad practice