Merge pull request #889 from bb010g/patch-1

Gradle support for javac
This commit is contained in:
w0rp 2017-08-30 10:26:27 +01:00 committed by GitHub
commit c7536fb4fd
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