Skip to content

Commit b827070

Browse files
committed
Issue #340: update to Checkstyle 10.0
1 parent f339bd5 commit b827070

File tree

23 files changed

+26
-32
lines changed

23 files changed

+26
-32
lines changed

.travis.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,7 @@ install:
2828
matrix:
2929
fast_finish: true
3030
include:
31-
# JDK 8 (minimal supported Java version of eclipse-cs)
32-
- jdk: openjdk8
33-
env:
34-
- DESC="install (openjdk8)"
35-
- CMD="mvn install && git diff"
36-
37-
# JDK 11 (Long Term Support version)
31+
# JDK 11 (minimal supported Java version of eclipse-cs)
3832
- jdk: openjdk11
3933
env:
4034
- DESC="install (openjdk11)"
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 kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
3+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
44
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
55
<classpathentry kind="output" path="target/classes"/>
66
</classpath>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ Bundle-Name: Eclipse Checkstyle
44
Bundle-SymbolicName: net.sf.eclipsecs.branding
55
Bundle-Version: 9.3.0.qualifier
66
Bundle-Vendor: Eclipse Checkstyle Project
7-
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
7+
Bundle-RequiredExecutionEnvironment: JavaSE-11
88
Automatic-Module-Name: net.sf.eclipsecs.branding

net.sf.eclipsecs.checkstyle/.classpath

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
3-
<classpathentry exported="true" kind="lib" path="checkstyle-9.3-all.jar" sourcepath="checkstyle-checkstyle-9.3.zip"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
3+
<classpathentry exported="true" kind="lib" path="checkstyle-10.0-all.jar" sourcepath="checkstyle-checkstyle-10.0.zip"/>
4+
<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"/>
77
</attributes>

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Bundle-SymbolicName: net.sf.eclipsecs.checkstyle
55
Bundle-Version: 9.3.0.qualifier
66
Bundle-Vendor: Eclipse Checkstyle Project
77
Bundle-ActivationPolicy: lazy
8-
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
8+
Bundle-RequiredExecutionEnvironment: JavaSE-11
99
Export-Package: .,
1010
com.google.common.base;version="9.3.0",
1111
com.google.common.cache;version="9.3.0",
@@ -38,5 +38,5 @@ Export-Package: .,
3838
com.puppycrawl.tools.checkstyle.utils,
3939
org.apache.commons.beanutils;version="9.3.0"
4040
Bundle-ClassPath: .,
41-
checkstyle-9.3-all.jar
41+
checkstyle-10.0-all.jar
4242
Automatic-Module-Name: net.sf.eclipsecs.checkstyle
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
bin.includes = META-INF/,\
22
.,\
33
license/,\
4-
checkstyle-9.3-all.jar
4+
checkstyle-10.0-all.jar
55
jars.compile.order = .
66
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>9.3</checkstyle.version>
14+
<checkstyle.version>10.0</checkstyle.version>
1515
</properties>
1616
<build>
1717
<plugins>

net.sf.eclipsecs.core/.classpath

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
3-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
3+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
44
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
55
<accessrules>
66
<accessrule kind="accessible" pattern="com/puppycrawl/tools/checkstyle/meta/**"/>
@@ -10,6 +10,6 @@
1010
<classpathentry exported="true" kind="lib" path="lib/dom4j-2.1.3.jar"/>
1111
<classpathentry exported="true" kind="lib" path="lib/snakeyaml-1.26.jar"/>
1212
<classpathentry exported="true" kind="lib" path="lib/javassist-3.28.0-GA.jar"/>
13-
<classpathentry kind="lib" path="lib/checkstyle-9.3-all.jar"/>
13+
<classpathentry kind="lib" path="lib/checkstyle-10.0-all.jar"/>
1414
<classpathentry kind="output" path="target/classes"/>
1515
</classpath>

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ Bundle-Name: Eclipse Checkstyle
33
Bundle-ManifestVersion: 2
44
Bundle-SymbolicName: net.sf.eclipsecs.core;singleton:=true
55
Bundle-Version: 9.3.0.qualifier
6-
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
6+
Bundle-RequiredExecutionEnvironment: JavaSE-11
77
Bundle-ClassPath: .,
88
lib/dom4j-2.1.3.jar,
99
lib/snakeyaml-1.26.jar,
1010
lib/javassist-3.28.0-GA.jar,
11-
lib/checkstyle-9.3-all.jar
11+
lib/checkstyle-10.0-all.jar
1212
Bundle-Activator: net.sf.eclipsecs.core.CheckstylePlugin
1313
Bundle-ActivationPolicy: lazy
1414
Bundle-Vendor: Eclipse Checkstyle Project

0 commit comments

Comments
 (0)