Skip to content

Commit

Permalink
CheckstyleBear: Use checkstyle 7.6
Browse files Browse the repository at this point in the history
Upgrade checkstyle from 6.15 to 7.6

Also rename the cached jar to match the downloaded jar file,
so that it is more recognisable for someone investigating
any problems, and so the filename includes the version, so that
the cache can be shared with multiple versions of CheckstyleBear.

Closes #1465
  • Loading branch information
jayvdb committed Feb 27, 2017
1 parent 3ff65c0 commit 04c1721
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bears/java/CheckstyleBear.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ class CheckstyleBear:

def setup_dependencies(self):
type(self).checkstyle_jar_file = self.download_cached_file(
'http://sourceforge.net/projects/checkstyle/files/checkstyle/6.15'
'/checkstyle-6.15-all.jar',
'checkstyle.jar')
'http://sourceforge.net/projects/checkstyle/files/checkstyle/7.6'
'/checkstyle-7.6-all.jar',
'checkstyle-7.6-all.jar')

def create_arguments(
self, filename, file, config_file,
Expand Down

0 comments on commit 04c1721

Please sign in to comment.