Skip to content

Commit 398819a

Browse files
committed
Apply review suggestion
Fix CI
1 parent 371039e commit 398819a

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

embedded-dynamodb/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
<artifactId>embedded-dynamodb</artifactId>
1515

1616
<properties>
17-
<!--<spring-data-dynamodb.version>5.1.0</spring-data-dynamodb.version>-->
1817
<aws-java-sdk-dynamodb.version>2.41.31</aws-java-sdk-dynamodb.version>
1918
</properties>
2019

embedded-influxdb/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<scope>test</scope>
3838
</dependency>
3939
<dependency>
40-
<groupId>tools.jackson.core</groupId>
40+
<groupId>com.fasterxml.jackson.core</groupId>
4141
<artifactId>jackson-databind</artifactId>
4242
<scope>test</scope>
4343
</dependency>

embedded-rabbitmq/src/main/java/com/playtika/testcontainer/rabbitmq/EmbeddedRabbitMQBootstrapConfiguration.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,8 @@ public RabbitMQContainer rabbitmq(ConfigurableEnvironment environment,
7878

7979
if (properties.getEnabledPlugins() != null && !properties.getEnabledPlugins().isEmpty()) {
8080
List<String> command = new ArrayList<>(properties.getEnabledPlugins().size() + 2);
81-
command.addAll(Arrays.asList("rabbitmq-plugins", "enable"));
81+
command.add("rabbitmq-plugins");
82+
command.add("enable");
8283
command.addAll(properties.getEnabledPlugins());
8384
rabbitMQ.execInContainer(command.toArray(new String[0]));
8485
}

embedded-temporal/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<artifactId>embedded-temporal</artifactId>
1616

1717
<properties>
18-
<temporal.version>1.33.0</temporal.version>
18+
<temporal.version>1.34.0</temporal.version>
1919
</properties>
2020

2121
<dependencyManagement>

0 commit comments

Comments
 (0)