Skip to content

Commit

Permalink
bumps Asciidoctorj to 2.4.0 + jRuby to 9.2.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
abelsromero committed Sep 10, 2020
1 parent a8a1d7e commit 2d72c0c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,5 @@ Build / Infrastructure::
* Upgrade Maven from v3.5.0 to 3.6.3 in AppVeyor (#460)
* Updated jacoco-maven-plugin version from v0.8.2 to 0.8.5 (#479)
* Use maven-javadoc-plugin version defined in `pluginManagement` + update to v3.2.0 (#481)
* Add Maven Wrapper to project and CI builds (#484)
* Add Maven Wrapper to project and CI builds (#484)
* Upgrade Asciidoctorj to 2.4.1 ad jRuby to 9.2.13.0 (#486)
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@
<project.execution.environment>JavaSE-1.8</project.execution.environment>
<spock.version>0.7-groovy-2.0</spock.version>
<groovy.version>2.1.3</groovy.version>
<asciidoctorj.version>2.3.0</asciidoctorj.version>
<jruby.version>9.2.11.1</jruby.version>
<asciidoctorj.version>2.4.1</asciidoctorj.version>
<jruby.version>9.2.13.0</jruby.version>
<maven.coveralls.plugin.version>4.3.0</maven.coveralls.plugin.version>
<maven.jacoco.plugin.version>0.8.5</maven.jacoco.plugin.version>
<maven.plugin.plugin.version>3.5</maven.plugin.plugin.version>
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/asciidoctor/maven/io/ConsoleHolder.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public void awaitProcessingResource() {
@SneakyThrows
public void awaitForMessage(String message) {
int pollTime = 300;
int ticks = (10 * 1000 / pollTime);
int ticks = (10 * 1500 / pollTime);
while (true) {
int pos = new String(newOut.toByteArray()).indexOf(message, cursor);
if (pos > 0) {
Expand Down

0 comments on commit 2d72c0c

Please sign in to comment.