diff options
author | Toine Siebelink <toine.siebelink@est.tech> | 2022-04-12 10:41:40 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2022-04-12 10:41:40 +0000 |
commit | dd54f2922099ed08992fb6544dfca7d66dfa4c59 (patch) | |
tree | bb25e092fed4222114ae89de4f7ececf3405ff82 /pom.xml | |
parent | 23bc326dde2667341e2c835929ef785ebd2ed834 (diff) | |
parent | 78e1d0616474d50d1b3d156e588c6cea9cba783d (diff) |
Merge "NCMP Kafka Producer Infrastructure"
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 39 |
1 files changed, 34 insertions, 5 deletions
@@ -75,6 +75,13 @@ <type>pom</type> <scope>import</scope> </dependency> + <dependency> + <groupId>org.testcontainers</groupId> + <artifactId>testcontainers-bom</artifactId> + <version>1.15.3</version> + <type>pom</type> + <scope>import</scope> + </dependency> </dependencies> </dependencyManagement> <dependencies> @@ -131,11 +138,6 @@ <version>1.6.2</version> </dependency> <dependency> - <groupId>io.springfox</groupId> - <artifactId>springfox-boot-starter</artifactId> - <version>3.0.0</version> - </dependency> - <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> </dependency> @@ -164,6 +166,25 @@ <artifactId>httpclient</artifactId> <version>${httpclient.version}</version> </dependency> + <dependency> + <groupId>org.springframework.kafka</groupId> + <artifactId>spring-kafka</artifactId> + </dependency> + <dependency> + <groupId>org.springframework.kafka</groupId> + <artifactId>spring-kafka-test</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.testcontainers</groupId> + <artifactId>spock</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.testcontainers</groupId> + <artifactId>kafka</artifactId> + <scope>test</scope> + </dependency> </dependencies> <build> <resources> @@ -280,6 +301,14 @@ <excludes> <exclude>**/IT*.java</exclude> </excludes> + <environmentVariables> + <!-- + Disable privileged container usage to cleanup the test containers; + these are removed automatically on jvm termination; + see https://www.testcontainers.org/features/configuration/#disabling-ryuk + --> + <TESTCONTAINERS_RYUK_DISABLED>true</TESTCONTAINERS_RYUK_DISABLED> + </environmentVariables> </configuration> </plugin> <plugin> |