Skip to content

Commit

Permalink
Fix the websockets platform extra runner
Browse files Browse the repository at this point in the history
Dependency for jakarta tck common was missing
Two version numbers for plugins were missing
  • Loading branch information
arjantijms committed Jan 29, 2025
1 parent efbf98b commit 3d48b46
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@

<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>3.1.3</version>
<executions>

<execution>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
/*
* Copyright (c) 2022, 2023 Contributors to the Eclipse Foundation.
* Copyright (c) 2022, 2025 Contributors to the Eclipse Foundation.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
Expand Down Expand Up @@ -84,6 +84,12 @@
<artifactId>websocket-tck-platform-tests</artifactId>
<version>${jakarta.tck.websocket.version}</version>
</dependency>

<dependency>
<groupId>jakarta.tck</groupId>
<artifactId>common</artifactId>
<version>11.0.0-RC2</version>
</dependency>

<!-- The Arquillian connector that starts GlassFish and deploys archives to it. -->
<dependency>
Expand Down Expand Up @@ -163,6 +169,7 @@
<!-- Configuring and running the TCK -->
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.5.2</version>
<executions>
<execution>
<id>gf-tests</id>
Expand Down

0 comments on commit 3d48b46

Please sign in to comment.