buildship
buildship copied to clipboard
Code completion for dependencies
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'
}
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