Skip to content

Commit 2d7c0cb

Browse files
authored
Updated pom-central.xml
1 parent f8a0e26 commit 2d7c0cb

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed

pom-central.xml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,36 @@
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>

src/test/java/com/github/underscore/FunctionsTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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");

0 commit comments

Comments
 (0)