buildship icon indicating copy to clipboard operation
buildship copied to clipboard

Code completion for dependencies

Open vogella opened this issue 4 years ago • 1 comments

Would be awesome if Buildship would provide code completion for dependencies:

dependencies { // This dependency is exported to consumers, that is to say found on their compile classpath. api 'org.apache.commons:commons-math3:3.6.1'

// This dependency is used internally, and not exposed to consumers on their own compile classpath.
implementation 'com.google.guava:guava:28.2-jre'
implementation ''------------------->"   |HERE IS WOULD BE COOL IF I could search the repositories for new libraries in the text editor.


// Use JUnit test framework
testImplementation 'junit:junit:4.12'

}

vogella avatar Jul 31 '20 10:07 vogella

Well, a general Content Assistant would be appropriate, but I guess that's too much to ask for https://stackoverflow.com/questions/34466127/content-assist-for-gradle/43757893

MahatmaFatalError avatar Sep 04 '21 08:09 MahatmaFatalError