File tree Expand file tree Collapse file tree 2 files changed +31
-1
lines changed
src/test/java/com/github/underscore Expand file tree Collapse file tree 2 files changed +31
-1
lines changed Original file line number Diff line number Diff line change 120120 </execution >
121121 </executions >
122122 </plugin >
123+ <plugin >
124+ <groupId >org.apache.maven.plugins</groupId >
125+ <artifactId >maven-antrun-plugin</artifactId >
126+ <version >3.1.0</version >
127+ <executions >
128+ <execution >
129+ <id >generate-checksums</id >
130+ <phase >verify</phase >
131+ <configuration >
132+ <target >
133+ <checksum fileext =" .md5" algorithm =" MD5" >
134+ <fileset dir =" ${project.build.directory}" >
135+ <include name =" *.jar" />
136+ <include name =" *.pom" />
137+ </fileset >
138+ </checksum >
139+ <checksum fileext =" .sha1" algorithm =" SHA-1" >
140+ <fileset dir =" ${project.build.directory}" >
141+ <include name =" *.jar" />
142+ <include name =" *.pom" />
143+ </fileset >
144+ </checksum >
145+ </target >
146+ </configuration >
147+ <goals >
148+ <goal >run</goal >
149+ </goals >
150+ </execution >
151+ </executions >
152+ </plugin >
123153 </plugins >
124154 </build >
125155 <dependencies >
Original file line number Diff line number Diff line change @@ -199,7 +199,7 @@ void defer() {
199199 return null ;
200200 });
201201 assertEquals (0 , counter [0 ].intValue (), "incr was debounced" );
202- await ().atMost (280 , TimeUnit .MILLISECONDS )
202+ await ().atMost (360 , TimeUnit .MILLISECONDS )
203203 .until (
204204 () -> {
205205 assertEquals (1 , counter [0 ].intValue (), "incr was debounced" );
You can’t perform that action at this time.
0 commit comments