Skip to content

Commit 6aa670a

Browse files
committed
Issue #641: update to Checkstyle 10.13.0
1 parent 1d65ed4 commit 6aa670a

File tree

11 files changed

+10
-10
lines changed

11 files changed

+10
-10
lines changed

net.sf.eclipsecs.checkstyle/.classpath

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
3-
<classpathentry exported="true" kind="lib" path="checkstyle-10.12.7-all.jar" sourcepath="checkstyle-checkstyle-10.12.7.zip"/>
3+
<classpathentry exported="true" kind="lib" path="checkstyle-10.13.0-all.jar" sourcepath="checkstyle-checkstyle-10.13.0.zip"/>
44
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11">
55
<attributes>
66
<attribute name="maven.pomderived" value="true"/>

net.sf.eclipsecs.checkstyle/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ Export-Package: .,
3333
com.puppycrawl.tools.checkstyle.filters,
3434
com.puppycrawl.tools.checkstyle.utils
3535
Bundle-ClassPath: .,
36-
checkstyle-10.12.7-all.jar
36+
checkstyle-10.13.0-all.jar
3737
Automatic-Module-Name: net.sf.eclipsecs.checkstyle

net.sf.eclipsecs.checkstyle/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
bin.includes = META-INF/,\
22
.,\
33
license/,\
4-
checkstyle-10.12.7-all.jar,\
4+
checkstyle-10.13.0-all.jar,\
55
OSGI-INF/
66
jars.compile.order = .
77
source.. = metadata/

net.sf.eclipsecs.checkstyle/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<name>Checkstyle Core Library Plugin</name>
1212

1313
<properties>
14-
<checkstyle.version>10.12.7</checkstyle.version>
14+
<checkstyle.version>10.13.0</checkstyle.version>
1515
</properties>
1616
<build>
1717
<plugins>

net.sf.eclipsecs.checkstyle/test/net/sf/eclipsecs/checkstyle/ChecksTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public class ChecksTest {
4747

4848
@Test
4949
public void testMetadataFiles() throws Exception {
50-
final Set<Class<?>> modules = CheckUtil.getCheckstyleModules();
50+
final Set<Class<?>> modules = new HashSet<>(CheckUtil.getCheckstyleModules());
5151

5252
// don't test root modules
5353
modules.remove(Checker.class);

net.sf.eclipsecs.core/.classpath

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
</classpathentry>
88
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
99
<classpathentry kind="src" path="src"/>
10-
<classpathentry kind="lib" path="lib/checkstyle-10.12.7-all.jar"/>
10+
<classpathentry kind="lib" path="lib/checkstyle-10.13.0-all.jar"/>
1111
<classpathentry kind="output" path="target/classes"/>
1212
</classpath>

net.sf.eclipsecs.core/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Bundle-SymbolicName: net.sf.eclipsecs.core;singleton:=true
55
Bundle-Version: 10.12.7.qualifier
66
Bundle-RequiredExecutionEnvironment: JavaSE-11
77
Bundle-ClassPath: .,
8-
lib/checkstyle-10.12.7-all.jar
8+
lib/checkstyle-10.13.0-all.jar
99
Bundle-Activator: net.sf.eclipsecs.core.CheckstylePlugin
1010
Bundle-ActivationPolicy: lazy
1111
Bundle-Vendor: %Bundle-Vendor

net.sf.eclipsecs.core/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ bin.includes = .,\
66
license/,\
77
plugin.xml,\
88
schema/,\
9-
lib/checkstyle-10.12.7-all.jar,\
9+
lib/checkstyle-10.13.0-all.jar,\
1010
OSGI-INF/
1111
javacDefaultEncoding.. = UTF-8

0 commit comments

Comments
 (0)