Skip to content

Commit 283b47d

Browse files
author
Davide Melfi
committed
chore: update junit platform launcher
1 parent 868b55e commit 283b47d

File tree

4 files changed

+26
-0
lines changed
  • aws-lambda-java-events-sdk-transformer
  • aws-lambda-java-runtime-interface-client
  • aws-lambda-java-tests
  • samples/kinesis-firehose-event-handler

4 files changed

+26
-0
lines changed

aws-lambda-java-events-sdk-transformer/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,13 @@
8585
<configuration>
8686
<failIfNoTests>true</failIfNoTests>
8787
</configuration>
88+
<dependencies>
89+
<dependency>
90+
<groupId>org.junit.platform</groupId>
91+
<artifactId>junit-platform-launcher</artifactId>
92+
<version>1.14.3</version>
93+
</dependency>
94+
</dependencies>
8895
</plugin>
8996
<plugin>
9097
<artifactId>maven-failsafe-plugin</artifactId>

aws-lambda-java-runtime-interface-client/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,11 @@
137137
<artifactId>junit-jupiter-engine</artifactId>
138138
<version>${junit-jupiter.version}</version>
139139
</dependency>
140+
<dependency>
141+
<groupId>org.junit.platform</groupId>
142+
<artifactId>junit-platform-launcher</artifactId>
143+
<version>1.14.3</version>
144+
</dependency>
140145
</dependencies>
141146
</plugin>
142147
<plugin>

aws-lambda-java-tests/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,13 @@
254254
<configuration>
255255
<failIfNoTests>true</failIfNoTests>
256256
</configuration>
257+
<dependencies>
258+
<dependency>
259+
<groupId>org.junit.platform</groupId>
260+
<artifactId>junit-platform-launcher</artifactId>
261+
<version>1.14.3</version>
262+
</dependency>
263+
</dependencies>
257264
</plugin>
258265
</plugins>
259266
</build>

samples/kinesis-firehose-event-handler/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,13 @@
7575
<configuration>
7676
<failIfNoTests>true</failIfNoTests>
7777
</configuration>
78+
<dependencies>
79+
<dependency>
80+
<groupId>org.junit.platform</groupId>
81+
<artifactId>junit-platform-launcher</artifactId>
82+
<version>1.14.3</version>
83+
</dependency>
84+
</dependencies>
7885
</plugin>
7986
</plugins>
8087
</build>

0 commit comments

Comments
 (0)