Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Scuilion/gradle-syntastic-plugin
A Gradle plugin for integrating your Java project with Vim and Syntastic.
https://github.com/Scuilion/gradle-syntastic-plugin
gradle gradle-plugin gradle-syntastic-plugin syntastic vim
Last synced: about 2 months ago
JSON representation
A Gradle plugin for integrating your Java project with Vim and Syntastic.
- Host: GitHub
- URL: https://github.com/Scuilion/gradle-syntastic-plugin
- Owner: Scuilion
- Created: 2015-06-21T20:35:28.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-08-22T11:47:24.000Z (over 1 year ago)
- Last Synced: 2024-08-04T03:03:21.362Z (5 months ago)
- Topics: gradle, gradle-plugin, gradle-syntastic-plugin, syntastic, vim
- Language: Groovy
- Homepage:
- Size: 268 KB
- Stars: 47
- Watchers: 4
- Forks: 3
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-gradle - gradle-syntastic-plugin - Integrate Java project with Vim and Syntastic. (Plugins / Editor and IDE integration)
README
# gradle-syntastic-plugin ![alt text](https://travis-ci.org/Scuilion/gradle-syntastic-plugin.svg?branch=master)
A gradle plugin for creating the .syntastic_javac_config file used by syntastic in VIM.
##### Using the Plugin
```
plugins {
id "org.gradle.java"
id "com.scuilion.syntastic" version "0.3.9"
}
```[Plugin Portal](https://plugins.gradle.org/plugin/com.scuilion.syntastic)
Task
* syntastic - for working in vim with the [syntastic](https://github.com/scrooloose/syntastic) syntastic checking plugin. The task will automatically get called when building (`gradle build`).##### .vimrc Settings
```
let g:syntastic_java_checkers=['javac']
let g:syntastic_java_javac_config_file_enabled = 1
````syntastic_java_javac_config_file_enabled` set syntastic to read the classpath from the .syntastic_javac_config file which is expected in the current working directory.