Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TCK runner was showing inconsistent dependencies, so add them explici… #564

Merged
merged 1 commit into from Mar 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion api/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>jakarta.enterprise</groupId>
<artifactId>cdi-tck-parent</artifactId>
<version>4.1.0</version>
<version>4.1.0-SNAPSHOT</version>
</parent>

<artifactId>cdi-tck-api</artifactId>
Expand Down
15 changes: 15 additions & 0 deletions dist-build/jboss-runner.pom
Expand Up @@ -146,6 +146,21 @@
<version>2.6</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.arquillian.testng</groupId>
<artifactId>arquillian-testng-container</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.shrinkwrap.descriptors</groupId>
<artifactId>shrinkwrap-descriptors-impl-javaee</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down
2 changes: 1 addition & 1 deletion dist-build/pom.xml
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>jakarta.enterprise</groupId>
<artifactId>cdi-tck-parent</artifactId>
<version>4.1.0</version>
<version>4.1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion doc/reference/pom.xml
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>jakarta.enterprise</groupId>
<artifactId>cdi-tck-parent</artifactId>
<version>4.1.0</version>
<version>4.1.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion ext-lib/pom.xml
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>cdi-tck-parent</artifactId>
<groupId>jakarta.enterprise</groupId>
<version>4.1.0</version>
<version>4.1.0-SNAPSHOT</version>
</parent>
<artifactId>cdi-tck-ext-lib</artifactId>
<name>CDI TCK Installed Library - test bean archive</name>
Expand Down
2 changes: 1 addition & 1 deletion impl/pom.xml
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>cdi-tck-parent</artifactId>
<groupId>jakarta.enterprise</groupId>
<version>4.1.0</version>
<version>4.1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>cdi-tck-core-impl</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion lang-model/pom.xml
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>cdi-tck-parent</artifactId>
<groupId>jakarta.enterprise</groupId>
<version>4.1.0</version>
<version>4.1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>cdi-tck-lang-model</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -4,7 +4,7 @@
<groupId>jakarta.enterprise</groupId>
<artifactId>cdi-tck-parent</artifactId>
<packaging>pom</packaging>
<version>4.1.0</version>
<version>4.1.0-SNAPSHOT</version>
<name>Jakarta CDI TCK</name>

<parent>
Expand Down