Skip to content

Commit

Permalink
fix(pom): add Awaitility
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin O'Donnell <kevin@blockchaintp.com>
  • Loading branch information
scealiontach committed Aug 17, 2022
1 parent 5d9a804 commit c24d8ea
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ repos:
- --pattern
- '^(?!((fix|feature|refactor)\/[a-zA-Z0-9\-]+)$).*'
- id: trailing-whitespace
exclude: "^(.*/?Makefile|.*.mk|.*.go|.*/?pom.xml)$"
- repo: /~https://github.com/commitizen-tools/commitizen
rev: v2.29.3
hooks:
Expand Down Expand Up @@ -76,7 +77,7 @@ repos:
rev: v1.3.0
hooks:
- id: forbid-tabs
exclude: "^(.*/?Makefile|.*.mk|.*.go)$"
exclude: "^(.*/?Makefile|.*.mk|.*.go|.*/?pom.xml)$"
- repo: /~https://github.com/doublify/pre-commit-go
rev: 208a4aaa7f86b44e961eaaea526743b920e187a0
hooks:
Expand Down
18 changes: 14 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8" ?>
<?xml version="1.0" encoding="UTF-8"?>
<!-- * Copyright 2019 Blockchain Technology Partners * * Licensed under the
Apache License, Version 2.0 (the "License"); * you may not use this file
except in compliance with the License. * You may obtain a copy of the License
Expand Down Expand Up @@ -179,7 +179,6 @@
<!-- Migrations, need v6 for daml store compat -->



<dependency>
<groupId>io.reactivex.rxjava3</groupId>
<artifactId>rxjava</artifactId>
Expand All @@ -205,7 +204,13 @@
<version>3.12.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.awaitility</groupId>
<artifactId>awaitility</artifactId>
<version>4.2.0</version>
</dependency>
</dependencies>

</dependencyManagement>
<dependencies>

Expand Down Expand Up @@ -289,6 +294,12 @@
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</dependency>

<dependency>
<groupId>org.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down Expand Up @@ -332,8 +343,7 @@
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.2.2</version>
<configuration>
</configuration>
<configuration></configuration>
<executions>
<!-- enable flattening -->
<execution>
Expand Down

0 comments on commit c24d8ea

Please sign in to comment.