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 151
151
<exclude name =" UseStringBufferForStringAppends" />
152
152
</rule >
153
153
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
+
154
161
<rule ref =" category/java/security.xml" />
155
162
</ruleset >
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ permissions:
11
11
jobs :
12
12
link-checker :
13
13
runs-on : ubuntu-latest
14
+ timeout-minutes : 15
14
15
steps :
15
16
- uses : actions/checkout@v4
16
17
19
20
- name : Link Checker
20
21
id : lychee
21
22
uses : lycheeverse/lychee-action@v2
23
+ with :
24
+ fail : false # Don't fail on broken links, create an issue instead
22
25
23
26
- name : Find already existing issue
24
27
id : find-issue
Original file line number Diff line number Diff line change 26
26
jobs :
27
27
build :
28
28
runs-on : ubuntu-latest
29
+ timeout-minutes : 30
29
30
30
31
strategy :
31
32
matrix :
73
74
checkstyle :
74
75
runs-on : ubuntu-latest
75
76
if : ${{ github.event_name != 'pull_request' || !startsWith(github.head_ref, 'renovate/') }}
77
+ timeout-minutes : 15
76
78
77
79
strategy :
78
80
matrix :
95
97
pmd :
96
98
runs-on : ubuntu-latest
97
99
if : ${{ github.event_name != 'pull_request' || !startsWith(github.head_ref, 'renovate/') }}
100
+ timeout-minutes : 15
98
101
99
102
strategy :
100
103
matrix :
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ permissions:
14
14
jobs :
15
15
check-code :
16
16
runs-on : ubuntu-latest
17
+ timeout-minutes : 30
17
18
steps :
18
19
- uses : actions/checkout@v4
19
20
48
49
prepare-release :
49
50
runs-on : ubuntu-latest
50
51
needs : [check-code]
52
+ timeout-minutes : 10
51
53
outputs :
52
54
upload_url : ${{ steps.create_release.outputs.upload_url }}
53
55
steps :
@@ -112,6 +114,7 @@ jobs:
112
114
publish-maven :
113
115
runs-on : ubuntu-latest
114
116
needs : [prepare-release]
117
+ timeout-minutes : 60
115
118
steps :
116
119
- uses : actions/checkout@v4
117
120
@@ -143,6 +146,7 @@ jobs:
143
146
publish-pages :
144
147
runs-on : ubuntu-latest
145
148
needs : [prepare-release]
149
+ timeout-minutes : 15
146
150
steps :
147
151
- uses : actions/checkout@v4
148
152
@@ -172,6 +176,7 @@ jobs:
172
176
after-release :
173
177
runs-on : ubuntu-latest
174
178
needs : [publish-maven]
179
+ timeout-minutes : 10
175
180
steps :
176
181
- uses : actions/checkout@v4
177
182
Original file line number Diff line number Diff line change 27
27
token-check :
28
28
runs-on : ubuntu-latest
29
29
if : ${{ !(github.event_name == 'pull_request' && startsWith(github.head_ref, 'renovate/')) }}
30
+ timeout-minutes : 5
30
31
outputs :
31
32
hasToken : ${{ steps.check-token.outputs.has }}
32
33
steps :
40
41
runs-on : ubuntu-latest
41
42
needs : token-check
42
43
if : ${{ needs.token-check.outputs.hasToken }}
44
+ timeout-minutes : 30
43
45
steps :
44
46
- uses : actions/checkout@v4
45
47
with :
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ permissions:
14
14
jobs :
15
15
labels :
16
16
runs-on : ubuntu-latest
17
+ timeout-minutes : 10
17
18
steps :
18
19
- uses : actions/checkout@v4
19
20
with :
Original file line number Diff line number Diff line change 9
9
jobs :
10
10
publish-maven :
11
11
runs-on : ubuntu-latest
12
+ timeout-minutes : 60
12
13
steps :
13
14
- uses : actions/checkout@v4
14
15
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ permissions:
31
31
jobs :
32
32
update :
33
33
runs-on : ubuntu-latest
34
+ timeout-minutes : 60
34
35
outputs :
35
36
update_branch_merged_commit : ${{ steps.manage-branches.outputs.update_branch_merged_commit }}
36
37
create_update_branch_merged_pr : ${{ steps.manage-branches.outputs.create_update_branch_merged_pr }}
@@ -180,6 +181,7 @@ jobs:
180
181
needs : [update]
181
182
if : needs.update.outputs.create_update_branch_merged_pr == 1
182
183
runs-on : ubuntu-latest
184
+ timeout-minutes : 60
183
185
steps :
184
186
- uses : actions/checkout@v4
185
187
with :
Original file line number Diff line number Diff line change 1
1
# 1.0.1
2
2
* Added customization degree
3
3
* Makes it possible that certain filters or parts of them are read-only
4
+ * Correctly set url when handling query parameters
4
5
5
6
# 1.0.0
6
7
_ Initial release_
Original file line number Diff line number Diff line change 40
40
<plugin >
41
41
<groupId >org.apache.maven.plugins</groupId >
42
42
<artifactId >maven-checkstyle-plugin</artifactId >
43
- <version >3.5 .0</version >
43
+ <version >3.6 .0</version >
44
44
<dependencies >
45
45
<dependency >
46
46
<groupId >com.puppycrawl.tools</groupId >
47
47
<artifactId >checkstyle</artifactId >
48
- <version >10.18.2 </version >
48
+ <version >10.20.0 </version >
49
49
</dependency >
50
50
</dependencies >
51
51
<configuration >
70
70
<plugin >
71
71
<groupId >org.apache.maven.plugins</groupId >
72
72
<artifactId >maven-pmd-plugin</artifactId >
73
- <version >3.25 .0</version >
73
+ <version >3.26 .0</version >
74
74
<configuration >
75
75
<includeTests >true</includeTests >
76
76
<printFailingErrors >true</printFailingErrors >
82
82
<dependency >
83
83
<groupId >net.sourceforge.pmd</groupId >
84
84
<artifactId >pmd-core</artifactId >
85
- <version >7.6 .0</version >
85
+ <version >7.7 .0</version >
86
86
</dependency >
87
87
<dependency >
88
88
<groupId >net.sourceforge.pmd</groupId >
89
89
<artifactId >pmd-java</artifactId >
90
- <version >7.6 .0</version >
90
+ <version >7.7 .0</version >
91
91
</dependency >
92
92
</dependencies >
93
93
</plugin >
99
99
<plugin >
100
100
<groupId >org.apache.maven.plugins</groupId >
101
101
<artifactId >maven-jxr-plugin</artifactId >
102
- <version >3.5 .0</version >
102
+ <version >3.6 .0</version >
103
103
</plugin >
104
104
</plugins >
105
105
</reporting >
You can’t perform that action at this time.
0 commit comments