javac: Don't assume src/main/java always exists

Some projects I have only have src/test/java (no /src/main/java), which
seemed to break some incorrect assumptions the linter had.
This commit is contained in:
Ryan Campbell
2018-12-20 15:37:31 -07:00
parent fefc093e70
commit 4fc27f099b
3 changed files with 18 additions and 7 deletions

View File

@@ -55,15 +55,14 @@ function! ale_linters#java#javac#GetCommand(buffer, import_paths) abort
if isdirectory(l:jaxb_dir)
call add(l:sp_dirs, l:jaxb_dir)
endif
endif
" Automatically include the test directory, but only for test code.
if expand('#' . a:buffer . ':p') =~? '\vsrc[/\\]test[/\\]java'
let l:test_dir = fnamemodify(l:src_dir, ':h:h:h')
\ . (has('win32') ? '\test\java\' : '/test/java/')
" Automatically include the test directory, but only for test code.
if expand('#' . a:buffer . ':p') =~? '\vsrc[/\\]test[/\\]java'
let l:test_dir = ale#path#FindNearestDirectory(a:buffer, 'src/test/java')
if isdirectory(l:test_dir)
call add(l:sp_dirs, l:test_dir)
endif
if isdirectory(l:test_dir)
call add(l:sp_dirs, l:test_dir)
endif
endif