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 | 47a0cd9376cec2b676c844eb7e491eb4b022b3d6 (patch) | |
tree | 7eefe205f08108ffa1d14b730b88b404b57152a8 /components/core/pom.xml | |
parent | cb46b4b6df0431ad32e80ec501feecb7037cd6f5 (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 8b6c524d0..631ee0072 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>
|