Skip to content

Commit f7cc332

Browse files
committed
config: release 10.3.0
1 parent 1a6263d commit f7cc332

File tree

29 files changed

+108
-64
lines changed

29 files changed

+108
-64
lines changed

docs/partials/custom-checks.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<!-- <div data-google-ad=""/> -->
33

44
<h1>Providing custom Checkstyle checks</h1>
5-
<p> One great feature of Checkstyle is its extentablity. You can easily write own checks as explained <a
6-
target="_blank" href="http://checkstyle.sourceforge.net/writingchecks.html">here <i
5+
<p> One great feature of Checkstyle is its extensibility. You can easily write own checks as explained <a
6+
target="_blank" href="https://checkstyle.org/writingchecks.html">here <i
77
class="fa fa-external-link"> </i></a> . <br/> To hook your checks into the eclipse-cs plugin you need to
88
provide them as a extension plugin. </p>
99
<p> In the further steps I am - for the sake of simplicity - assuming that you start off with the <a
@@ -20,8 +20,8 @@ <h1>Providing custom Checkstyle checks</h1>
2020
reside there. <br/> In doing so you will be able to define your checks in your configuration file using
2121
the logical check name - instead of needing to provide the fully qualified class name of your check.
2222
<br/> For more info about the checkstyle packages files please read here: <a target="_blank"
23-
href="http://checkstyle.sourceforge.net/config.html#Packages"
24-
>http://checkstyle.sourceforge.net/config.html#Packages <i class="fa fa-external-link"> </i></a>
23+
href="https://checkstyle.org/config.html#Packages"
24+
>https://checkstyle.org/config.html#Packages <i class="fa fa-external-link"> </i></a>
2525
</p>
2626
</li>
2727
<li>

docs/partials/custom-config.html

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -102,47 +102,47 @@ <h3>Congratulations!</h3>
102102
<p>Detailed information on the configuration options for each check can be found on the Checkstyle website:</p>
103103
<ul>
104104
<li>
105-
<a target="_blank" href="http://checkstyle.sourceforge.net/config_javadoc.html">Javadoc Comments <i
105+
<a target="_blank" href="https://checkstyle.org/config_javadoc.html">Javadoc Comments <i
106106
class="fa fa-external-link"> </i></a>
107107
</li>
108108
<li>
109-
<a target="_blank" href="http://checkstyle.sourceforge.net/config_naming.html">Naming Conventions <i
109+
<a target="_blank" href="https://checkstyle.org/config_naming.html">Naming Conventions <i
110110
class="fa fa-external-link"> </i></a>
111111
</li>
112112
<li>
113-
<a target="_blank" href="http://checkstyle.sourceforge.net/config_imports.html">Imports <i
113+
<a target="_blank" href="https://checkstyle.org/config_imports.html">Imports <i
114114
class="fa fa-external-link"> </i></a>
115115
</li>
116116
<li>
117-
<a target="_blank" href="http://checkstyle.sourceforge.net/config_sizes.html">Size Violations <i
117+
<a target="_blank" href="https://checkstyle.org/config_sizes.html">Size Violations <i
118118
class="fa fa-external-link"> </i></a>
119119
</li>
120120
<li>
121-
<a target="_blank" href="http://checkstyle.sourceforge.net/config_whitespace.html">Whitespace <i
121+
<a target="_blank" href="https://checkstyle.org/config_whitespace.html">Whitespace <i
122122
class="fa fa-external-link"> </i></a>
123123
</li>
124124
<li>
125-
<a target="_blank" href="http://checkstyle.sourceforge.net/config_modifier.html">Modifiers <i
125+
<a target="_blank" href="https://checkstyle.org/config_modifier.html">Modifiers <i
126126
class="fa fa-external-link"> </i></a>
127127
</li>
128128
<li>
129-
<a target="_blank" href="http://checkstyle.sourceforge.net/config_blocks.html">Blocks <i
129+
<a target="_blank" href="https://checkstyle.org/config_blocks.html">Blocks <i
130130
class="fa fa-external-link"> </i></a>
131131
</li>
132132
<li>
133-
<a target="_blank" href="http://checkstyle.sourceforge.net/config_headers.html">Headers <i
133+
<a target="_blank" href="https://checkstyle.org/config_headers.html">Headers <i
134134
class="fa fa-external-link"> </i></a>
135135
</li>
136136
<li>
137-
<a target="_blank" href="http://checkstyle.sourceforge.net/config_coding.html">Coding Problems <i
137+
<a target="_blank" href="https://checkstyle.org/config_coding.html">Coding Problems <i
138138
class="fa fa-external-link"> </i></a>
139139
</li>
140140
<li>
141-
<a href="http://checkstyle.sourceforge.net/config_design.html">Class Design <i class="fa fa-external-link"
141+
<a href="https://checkstyle.org/config_design.html">Class Design <i class="fa fa-external-link"
142142
> </i></a>
143143
</li>
144144
<li>
145-
<a href="http://checkstyle.sourceforge.net/config_misc.html">Miscellaneous <i class="fa fa-external-link"
145+
<a href="https://checkstyle.org/config_misc.html">Miscellaneous <i class="fa fa-external-link"
146146
> </i></a>
147147
</li>
148148
</ul>

docs/partials/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ <h1>Eclipse Checkstyle Plugin</h1>
2424
<small>
2525
<sup>1 </sup>
2626
Install via Eclipse Marketplace. Drag and drop this link into a running Eclipse
27-
(2020-09 or higher version) workspace. Latest release 10.2.0, based on Checkstyle 10.2, see
27+
(2020-09 or higher version) workspace. Latest release 10.3.0, based on Checkstyle 10.3, see
2828
<a href="#!/releasenotes">release notes</a>
2929
</small>
3030
</div>
@@ -66,7 +66,7 @@ <h2>What is it?</h2>
6666
<p class="text-justify">
6767
The Eclipse Checkstyle Plugin (aka eclipse-cs) integrates the static source code
6868
analyzer
69-
<a href="http://checkstyle.sourceforge.net/">
69+
<a href="https://checkstyle.org/">
7070
Checkstyle
7171
<i class="fa fa-external-link">
7272
</i>

docs/partials/properties.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!-- <div data-google-ad=""/> -->
33

44
<h1>Property expansion in Checkstyle configuration files</h1>
5-
<p>Checkstyle contains a <a target="_blank" href="http://checkstyle.sourceforge.net/config.html#Properties">feature
5+
<p>Checkstyle contains a <a target="_blank" href="https://checkstyle.org/config.html#Properties">feature
66
<i class="fa fa-external-link"> </i></a> that lets you define module properties in a way that they can
77
expanded dynamically when the configuration is loaded. <br/> Such a property is defined using the well known
88
<code>${property_name}</code> notation.</p>
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<div>
2+
<h3>Changes</h3>
3+
<ul>
4+
<li>1a6263d3 Issue #352: update to Checkstyle 10.3</li>
5+
<li>fd58efba supplemental: replace outdated links to checkstyle website</li>
6+
</ul>
7+
8+
<p>
9+
Please read the
10+
<a target="_blank" href="https://checkstyle.org/releasenotes.html">
11+
Checkstyle release notes
12+
</a>
13+
for details on recent and potentially breaking changes in Checkstyle.
14+
Checkstyle configuration files potentially
15+
need to be adapted to this version.
16+
</p>
17+
</div>

docs/partials/releases/5.0.0beta1/release_notes.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div>
22
<p>This beta release of the plugin includes the recent Checkstyle 5.0beta1 (read <a
3-
href="http://checkstyle.sourceforge.net/5.x/releasenotes.html">here</a>).</p>
3+
href="https://checkstyle.org/releasenotes.html">here</a>).</p>
44
<p>The 5.0.0 version of the plugin will be a major restructuring of the existing code. This includes splitting the
55
grown, rather monolithic plugin into multiple smaller plugins where future development will be much easier to
66
handle (hopefully).<br/> Most of the dissecting and putting-back-together has already taken place but is not yet

docs/releases.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
[
2+
{
3+
"version": "Release 10.3.0",
4+
"template": "partials/releases/10.3.0/release_notes.html",
5+
"open": true
6+
},
27
{
38
"version": "Release 10.2.0",
49
"template": "partials/releases/10.2.0/release_notes.html",

docs/sitemap.xml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -12,77 +12,77 @@
1212
-->
1313
<url>
1414
<loc>https://checkstyle.org/eclipse-cs/</loc>
15-
<lastmod>2022-11-02T00:33:52Z</lastmod>
15+
<lastmod>2022-11-02T22:57:24Z</lastmod>
1616
<changefreq>weekly</changefreq>
1717
</url>
1818
<url>
1919
<loc>https://checkstyle.org/eclipse-cs/#!/releasenotes</loc>
20-
<lastmod>2022-11-02T00:33:52Z</lastmod>
20+
<lastmod>2022-11-02T22:57:24Z</lastmod>
2121
<changefreq>weekly</changefreq>
2222
</url>
2323
<url>
2424
<loc>https://checkstyle.org/eclipse-cs/#!/install</loc>
25-
<lastmod>2022-11-02T00:33:52Z</lastmod>
25+
<lastmod>2022-11-02T22:57:24Z</lastmod>
2626
<changefreq>weekly</changefreq>
2727
</url>
2828
<url>
2929
<loc>https://checkstyle.org/eclipse-cs/#!/project-setup</loc>
30-
<lastmod>2022-11-02T00:33:52Z</lastmod>
30+
<lastmod>2022-11-02T22:57:24Z</lastmod>
3131
<changefreq>weekly</changefreq>
3232
</url>
3333
<url>
3434
<loc>https://checkstyle.org/eclipse-cs/#!/custom-config</loc>
35-
<lastmod>2022-11-02T00:33:52Z</lastmod>
35+
<lastmod>2022-11-02T22:57:24Z</lastmod>
3636
<changefreq>weekly</changefreq>
3737
</url>
3838
<url>
3939
<loc>https://checkstyle.org/eclipse-cs/#!/filters</loc>
40-
<lastmod>2022-11-02T00:33:52Z</lastmod>
40+
<lastmod>2022-11-02T22:57:24Z</lastmod>
4141
<changefreq>weekly</changefreq>
4242
</url>
4343
<url>
4444
<loc>https://checkstyle.org/eclipse-cs/#!/configtypes</loc>
45-
<lastmod>2022-11-02T00:33:52Z</lastmod>
45+
<lastmod>2022-11-02T22:57:24Z</lastmod>
4646
<changefreq>weekly</changefreq>
4747
</url>
4848
<url>
4949
<loc>https://checkstyle.org/eclipse-cs/#!/properties</loc>
50-
<lastmod>2022-11-02T00:33:52Z</lastmod>
50+
<lastmod>2022-11-02T22:57:24Z</lastmod>
5151
<changefreq>weekly</changefreq>
5252
</url>
5353
<url>
5454
<loc>https://checkstyle.org/eclipse-cs/#!/filesets</loc>
55-
<lastmod>2022-11-02T00:33:52Z</lastmod>
55+
<lastmod>2022-11-02T22:57:24Z</lastmod>
5656
<changefreq>weekly</changefreq>
5757
</url>
5858
<url>
5959
<loc>https://checkstyle.org/eclipse-cs/#!/preferences</loc>
60-
<lastmod>2022-11-02T00:33:52Z</lastmod>
60+
<lastmod>2022-11-02T22:57:24Z</lastmod>
6161
<changefreq>weekly</changefreq>
6262
</url>
6363
<url>
6464
<loc>https://checkstyle.org/eclipse-cs/#!/extensions</loc>
65-
<lastmod>2022-11-02T00:33:52Z</lastmod>
65+
<lastmod>2022-11-02T22:57:24Z</lastmod>
6666
<changefreq>weekly</changefreq>
6767
</url>
6868
<url>
6969
<loc>https://checkstyle.org/eclipse-cs/#!/custom-checks</loc>
70-
<lastmod>2022-11-02T00:33:52Z</lastmod>
70+
<lastmod>2022-11-02T22:57:24Z</lastmod>
7171
<changefreq>weekly</changefreq>
7272
</url>
7373
<url>
7474
<loc>https://checkstyle.org/eclipse-cs/#!/builtin-config</loc>
75-
<lastmod>2022-11-02T00:33:52Z</lastmod>
75+
<lastmod>2022-11-02T22:57:24Z</lastmod>
7676
<changefreq>weekly</changefreq>
7777
</url>
7878
<url>
7979
<loc>https://checkstyle.org/eclipse-cs/#!/custom-filters</loc>
80-
<lastmod>2022-11-02T00:33:52Z</lastmod>
80+
<lastmod>2022-11-02T22:57:24Z</lastmod>
8181
<changefreq>weekly</changefreq>
8282
</url>
8383
<url>
8484
<loc>https://checkstyle.org/eclipse-cs/#!/faq</loc>
85-
<lastmod>2022-11-02T00:33:52Z</lastmod>
85+
<lastmod>2022-11-02T22:57:24Z</lastmod>
8686
<changefreq>weekly</changefreq>
8787
</url>
8888
</urlset>

net.sf.eclipsecs-feature/feature.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<feature version="10.2.0.qualifier"
2+
<feature version="10.3.0.qualifier"
33
id="net.sf.eclipsecs"
44
label="%feature.label"
55
provider-name="%feature.provider_name"
@@ -39,33 +39,33 @@
3939
id="net.sf.eclipsecs.branding"
4040
download-size="0"
4141
install-size="0"
42-
version="10.2.0.qualifier"
42+
version="10.3.0.qualifier"
4343
unpack="false"/>
4444

4545
<plugin
4646
id="net.sf.eclipsecs.core"
4747
download-size="0"
4848
install-size="0"
49-
version="10.2.0.qualifier"
49+
version="10.3.0.qualifier"
5050
unpack="true"/>
5151

5252
<plugin
5353
id="net.sf.eclipsecs.doc"
5454
download-size="0"
5555
install-size="0"
56-
version="10.2.0.qualifier"
56+
version="10.3.0.qualifier"
5757
unpack="false"/>
5858

5959
<plugin
6060
id="net.sf.eclipsecs.checkstyle"
6161
download-size="0"
6262
install-size="0"
63-
version="10.2.0.qualifier"/>
63+
version="10.3.0.qualifier"/>
6464

6565
<plugin
6666
id="net.sf.eclipsecs.ui"
6767
download-size="0"
6868
install-size="0"
69-
version="10.2.0.qualifier"/>
69+
version="10.3.0.qualifier"/>
7070

7171
</feature>

net.sf.eclipsecs-feature/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>net.sf.eclipsecs.parent</artifactId>
55
<groupId>net.sf.eclipsecs</groupId>
6-
<version>10.2.0-SNAPSHOT</version>
6+
<version>10.3.0-SNAPSHOT</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>net.sf.eclipsecs</artifactId>

0 commit comments

Comments
 (0)