File tree Expand file tree Collapse file tree 13 files changed +83
-45
lines changed
vaadin-simple-grid-filter-demo
vaadin-simple-grid-filter
src/main/java/software/xdev/vaadin Expand file tree Collapse file tree 13 files changed +83
-45
lines changed Original file line number Diff line number Diff line change 151151 <exclude name =" UseStringBufferForStringAppends" />
152152 </rule >
153153
154+ <rule ref =" category/java/performance.xml/TooFewBranchesForSwitch" >
155+ <properties >
156+ <!-- If you have one case only please use a if -->
157+ <property name =" minimumNumberCaseForASwitch" value =" 2" />
158+ </properties >
159+ </rule >
160+
154161 <rule ref =" category/java/security.xml" />
155162</ruleset >
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ permissions:
1111jobs :
1212 link-checker :
1313 runs-on : ubuntu-latest
14+ timeout-minutes : 15
1415 steps :
1516 - uses : actions/checkout@v4
1617
1920 - name : Link Checker
2021 id : lychee
2122 uses : lycheeverse/lychee-action@v2
23+ with :
24+ fail : false # Don't fail on broken links, create an issue instead
2225
2326 - name : Find already existing issue
2427 id : find-issue
Original file line number Diff line number Diff line change 2626jobs :
2727 build :
2828 runs-on : ubuntu-latest
29+ timeout-minutes : 30
2930
3031 strategy :
3132 matrix :
7374 checkstyle :
7475 runs-on : ubuntu-latest
7576 if : ${{ github.event_name != 'pull_request' || !startsWith(github.head_ref, 'renovate/') }}
77+ timeout-minutes : 15
7678
7779 strategy :
7880 matrix :
9597 pmd :
9698 runs-on : ubuntu-latest
9799 if : ${{ github.event_name != 'pull_request' || !startsWith(github.head_ref, 'renovate/') }}
100+ timeout-minutes : 15
98101
99102 strategy :
100103 matrix :
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ permissions:
1414jobs :
1515 check-code :
1616 runs-on : ubuntu-latest
17+ timeout-minutes : 30
1718 steps :
1819 - uses : actions/checkout@v4
1920
4849 prepare-release :
4950 runs-on : ubuntu-latest
5051 needs : [check-code]
52+ timeout-minutes : 10
5153 outputs :
5254 upload_url : ${{ steps.create_release.outputs.upload_url }}
5355 steps :
@@ -112,6 +114,7 @@ jobs:
112114 publish-maven :
113115 runs-on : ubuntu-latest
114116 needs : [prepare-release]
117+ timeout-minutes : 60
115118 steps :
116119 - uses : actions/checkout@v4
117120
@@ -143,6 +146,7 @@ jobs:
143146 publish-pages :
144147 runs-on : ubuntu-latest
145148 needs : [prepare-release]
149+ timeout-minutes : 15
146150 steps :
147151 - uses : actions/checkout@v4
148152
@@ -172,6 +176,7 @@ jobs:
172176 after-release :
173177 runs-on : ubuntu-latest
174178 needs : [publish-maven]
179+ timeout-minutes : 10
175180 steps :
176181 - uses : actions/checkout@v4
177182
Original file line number Diff line number Diff line change 2727 token-check :
2828 runs-on : ubuntu-latest
2929 if : ${{ !(github.event_name == 'pull_request' && startsWith(github.head_ref, 'renovate/')) }}
30+ timeout-minutes : 5
3031 outputs :
3132 hasToken : ${{ steps.check-token.outputs.has }}
3233 steps :
4041 runs-on : ubuntu-latest
4142 needs : token-check
4243 if : ${{ needs.token-check.outputs.hasToken }}
44+ timeout-minutes : 30
4345 steps :
4446 - uses : actions/checkout@v4
4547 with :
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ permissions:
1414jobs :
1515 labels :
1616 runs-on : ubuntu-latest
17+ timeout-minutes : 10
1718 steps :
1819 - uses : actions/checkout@v4
1920 with :
Original file line number Diff line number Diff line change 99jobs :
1010 publish-maven :
1111 runs-on : ubuntu-latest
12+ timeout-minutes : 60
1213 steps :
1314 - uses : actions/checkout@v4
1415
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ permissions:
3131jobs :
3232 update :
3333 runs-on : ubuntu-latest
34+ timeout-minutes : 60
3435 outputs :
3536 update_branch_merged_commit : ${{ steps.manage-branches.outputs.update_branch_merged_commit }}
3637 create_update_branch_merged_pr : ${{ steps.manage-branches.outputs.create_update_branch_merged_pr }}
@@ -180,6 +181,7 @@ jobs:
180181 needs : [update]
181182 if : needs.update.outputs.create_update_branch_merged_pr == 1
182183 runs-on : ubuntu-latest
184+ timeout-minutes : 60
183185 steps :
184186 - uses : actions/checkout@v4
185187 with :
Original file line number Diff line number Diff line change 11# 1.0.1
22* Added customization degree
33 * Makes it possible that certain filters or parts of them are read-only
4+ * Correctly set url when handling query parameters
45
56# 1.0.0
67_ Initial release_
Original file line number Diff line number Diff line change 4040 <plugin >
4141 <groupId >org.apache.maven.plugins</groupId >
4242 <artifactId >maven-checkstyle-plugin</artifactId >
43- <version >3.5 .0</version >
43+ <version >3.6 .0</version >
4444 <dependencies >
4545 <dependency >
4646 <groupId >com.puppycrawl.tools</groupId >
4747 <artifactId >checkstyle</artifactId >
48- <version >10.18.2 </version >
48+ <version >10.20.0 </version >
4949 </dependency >
5050 </dependencies >
5151 <configuration >
7070 <plugin >
7171 <groupId >org.apache.maven.plugins</groupId >
7272 <artifactId >maven-pmd-plugin</artifactId >
73- <version >3.25 .0</version >
73+ <version >3.26 .0</version >
7474 <configuration >
7575 <includeTests >true</includeTests >
7676 <printFailingErrors >true</printFailingErrors >
8282 <dependency >
8383 <groupId >net.sourceforge.pmd</groupId >
8484 <artifactId >pmd-core</artifactId >
85- <version >7.6 .0</version >
85+ <version >7.7 .0</version >
8686 </dependency >
8787 <dependency >
8888 <groupId >net.sourceforge.pmd</groupId >
8989 <artifactId >pmd-java</artifactId >
90- <version >7.6 .0</version >
90+ <version >7.7 .0</version >
9191 </dependency >
9292 </dependencies >
9393 </plugin >
9999 <plugin >
100100 <groupId >org.apache.maven.plugins</groupId >
101101 <artifactId >maven-jxr-plugin</artifactId >
102- <version >3.5 .0</version >
102+ <version >3.6 .0</version >
103103 </plugin >
104104 </plugins >
105105 </reporting >
You can’t perform that action at this time.
0 commit comments