This is an automated email from the ASF dual-hosted git repository. juanpablo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/jspwiki.git
commit 66ebf1ce4e72a3c4cd5a3ddb203735e93c831ddf Author: juanpablo <[email protected]> AuthorDate: Thu Oct 10 23:23:42 2019 +0200 add Awaitility as test dependency --- jspwiki-main/pom.xml | 6 ++++++ pom.xml | 7 +++++++ 2 files changed, 13 insertions(+) diff --git a/jspwiki-main/pom.xml b/jspwiki-main/pom.xml index e739cb0..36f311b 100644 --- a/jspwiki-main/pom.xml +++ b/jspwiki-main/pom.xml @@ -172,6 +172,12 @@ </dependency> <dependency> + <groupId>org.awaitility</groupId> + <artifactId>awaitility</artifactId> + <scope>test</scope> + </dependency> + + <dependency> <groupId>org.hsqldb</groupId> <artifactId>sqltool</artifactId> <scope>test</scope> diff --git a/pom.xml b/pom.xml index 4d623d0..82d54ea 100644 --- a/pom.xml +++ b/pom.xml @@ -43,6 +43,7 @@ <maven.version>3.5</maven.version> <akismet-java.version>1.02</akismet-java.version> + <awaitility.version>4.0.1</awaitility.version> <commons-fileupload.version>1.4</commons-fileupload.version> <commons-httpclient.version>3.1</commons-httpclient.version> <commons-io.version>2.6</commons-io.version> @@ -304,6 +305,12 @@ <version>${stripes.version}</version> </dependency> + <dependency> + <groupId>org.awaitility</groupId> + <artifactId>awaitility</artifactId> + <version>${awaitility.version}</version> + </dependency> + <!-- Note: As Jetty activates during the build, can upgrade only to the latest Jetty version that can run on the
