Gradle support for javac

Based off of #745.
This commit is contained in:
Brayden Banks 2017-08-29 15:39:23 -07:00
parent 8264e265a8
commit d08d2dac79
1 changed files with 5 additions and 0 deletions

View File

@ -14,6 +14,11 @@ function! ale_linters#java#javac#GetImportPaths(buffer) abort
\ . 'mvn dependency:build-classpath'
endif
let l:classpath_command = ale#gradle#BuildClasspathCommand(a:buffer)
if !empty(l:classpath_command)
return l:classpath_command
endif
return ''
endfunction