-
Notifications
You must be signed in to change notification settings - Fork 110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
use checkstyle version 6.15 #27
Conversation
@mrigger just because I saw you closed the other pull request: to update an existing pull request, simply push the new commits on to the branch used for the PR. You can also force-push to that branch if you want to discard incorrect commits. |
@@ -5425,7 +5426,8 @@ def _load_projects(self): | |||
javaCompliance = attrs.pop('javaCompliance', None) | |||
if javaCompliance is None: | |||
abort('javaCompliance property required for non-native project ' + name) | |||
p = JavaProject(self, name, subDir, srcDirs, deps, javaCompliance, workingSets, d, theLicense=theLicense) | |||
checkstyleName = self.getMxCompatibility().checkstyleLibraryName() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for consistency, checkstyleName
should be checkstyleLibraryName
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, I made the naming consistent as you suggested.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@smarr Thanks, I followed your advice and pushed the last fix to the PR branch.
added support for Checkstyle 6.15
…o master * commit '05493c3e9f289707c40226f61f4c2b2f09aa3a23': Compile Java projects using the default jdk
The changes address issue #25. Suites that rely on older mx version will use Checkstyle 6.0, while newer ones will use 6.15.