diff options
author | Alexis de Talhouët <adetalhouet89@gmail.com> | 2019-01-09 16:57:48 -0500 |
---|---|---|
committer | Alexis de Talhouët <alexis.de_talhouet@bell.ca> | 2019-01-11 14:17:31 +0000 |
commit | 423afe7b0c6282e3f22a912066185aa6f83e029c (patch) | |
tree | 9130691628ca32ac8b788f3c78027eede90f60b2 /components/core/pom.xml | |
parent | 158912e6bbaaeda6e1f764b83da0ee253e9011a1 (diff) |
Add support for workflow validation
Also, add support for mock in Kotlin using
https://mockk.io/
Change-Id: Ia85e1180e09e9d08a02de515b1cc4158c3bccd5c
Issue-ID: CCSDK-717
Signed-off-by: Alexis de Talhouët <adetalhouet89@gmail.com>
Diffstat (limited to 'components/core/pom.xml')
-rw-r--r-- | components/core/pom.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/components/core/pom.xml b/components/core/pom.xml index 8b6c524d..631ee007 100644 --- a/components/core/pom.xml +++ b/components/core/pom.xml @@ -52,11 +52,17 @@ <groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</dependency>
+ <!--Testing dependencies--> <dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-test-junit</artifactId>
<scope>test</scope>
</dependency>
+ <dependency> + <groupId>io.mockk</groupId> + <artifactId>mockk</artifactId> + <scope>test</scope> + </dependency> </dependencies>
</project>
|