Skip to content

Commit 03992ab

Browse files
BananeweizenCalixte
authored andcommitted
Issue #459: upgrade to 10.7.0
1 parent 0676245 commit 03992ab

File tree

10 files changed

+11
-9
lines changed

10 files changed

+11
-9
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.6.0-all.jar" sourcepath="checkstyle-checkstyle-10.6.0.zip"/>
3+
<classpathentry exported="true" kind="lib" path="checkstyle-10.7.0-all.jar" sourcepath="checkstyle-checkstyle-10.7.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.6.0-all.jar
36+
checkstyle-10.7.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.6.0-all.jar,\
4+
checkstyle-10.7.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.6.0</checkstyle.version>
14+
<checkstyle.version>10.7.0</checkstyle.version>
1515
</properties>
1616
<build>
1717
<plugins>

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.6.0-all.jar"/>
10+
<classpathentry kind="lib" path="lib/checkstyle-10.7.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.6.0.qualifier
66
Bundle-RequiredExecutionEnvironment: JavaSE-11
77
Bundle-ClassPath: .,
8-
lib/checkstyle-10.6.0-all.jar
8+
lib/checkstyle-10.7.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.6.0-all.jar,\
9+
lib/checkstyle-10.7.0-all.jar,\
1010
OSGI-INF/
1111
javacDefaultEncoding.. = UTF-8

upgrade-version.build.xml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@
33
Instructions for upgrading a checkstyle version
44
===============================================
55
6+
* Uncheck Project > Build Automatically
67
* change the "fromVersion" and "toVersion" properties in this file.
78
* Select the *.launch file next to this script and run it via context menu > Run As.
89
* The script replaces all version numbers, deletes outdated files, and downloads the release jar.
10+
* Check Project > Build Automatically
911
* Use Project > Clean with all projects to trigger a full rebuild.
1012
1113
There should be no errors or warnings in the problems view afterwards.
@@ -16,8 +18,8 @@ Apply all necessary manual code changes now.
1618
<description>upgrade all version numbers</description>
1719

1820
<target name="upgrade-version" description="upgrade version numbers and dependent files">
19-
<property name="fromVersion" value="10.5.0"/>
20-
<property name="toVersion" value="10.6.0"/>
21+
<property name="fromVersion" value="10.6.0"/>
22+
<property name="toVersion" value="10.7.0"/>
2123

2224
<!-- delete all outdated files, independent of their current version -->
2325
<delete>

0 commit comments

Comments
 (0)