diff options
author | Renu Kumari <renu.kumari@bell.ca> | 2021-05-27 23:16:32 -0400 |
---|---|---|
committer | Renu Kumari <renu.kumari@bell.ca> | 2021-07-07 06:54:13 -0400 |
commit | ff52b94907002d2d2910567e1ad5f55e66008eb8 (patch) | |
tree | b53ea7cf4587ec84db6db77b0d23f23327e538ad /cps-ri/pom.xml | |
parent | 6658f50ddbfbd13469f24aefc8a6002d8807a7eb (diff) |
Sending Data Updated Event to kafka
Issue-ID: CPS-374
Signed-off-by: Renu Kumari <renu.kumari@bell.ca>
Change-Id: I05fedcace42b84575411df26c586788bffe6b846
Diffstat (limited to 'cps-ri/pom.xml')
-rw-r--r-- | cps-ri/pom.xml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/cps-ri/pom.xml b/cps-ri/pom.xml index 320c7edae0..b2cf6917e6 100644 --- a/cps-ri/pom.xml +++ b/cps-ri/pom.xml @@ -2,6 +2,7 @@ <!--
============LICENSE_START=======================================================
Modification Copyright (C) 2021 Nordix Foundation
+ Modifications Copyright (C) 2021 Bell Canada.
================================================================================
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -116,4 +117,18 @@ <scope>test</scope>
</dependency>
</dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <environmentVariables>
+ <TESTCONTAINERS_HUB_IMAGE_NAME_PREFIX>${docker.pull.registry}/library/</TESTCONTAINERS_HUB_IMAGE_NAME_PREFIX>
+ </environmentVariables>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
</project>
|