Skip to content

Commit

Permalink
Rename TCK "ant-based" to "platform"
Browse files Browse the repository at this point in the history
Signed-off-by: Arjan Tijms <arjan.tijms@omnifish.ee>
  • Loading branch information
arjantijms committed Nov 3, 2023
1 parent 56e557c commit 51456f8
Show file tree
Hide file tree
Showing 36 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2021, 2022 Contributors to the Eclipse Foundation. All rights reserved.
Copyright (c) 2021, 2023 Contributors to the Eclipse Foundation. All rights reserved.
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 All @@ -26,10 +26,10 @@
<version>7.0.11-SNAPSHOT</version>
</parent>

<artifactId>tck-runner</artifactId>
<artifactId>platform-tck-runner</artifactId>
<packaging>jar</packaging>

<name>TCK: TCK Runner for Ant-based Test Suites</name>
<name>TCK: TCK Runner for the Platform Tests</name>

<properties>
<ant.home>${env.ANT_HOME}</ant.home>
Expand All @@ -42,7 +42,7 @@
<dependencies>
<dependency>
<groupId>org.glassfish.main.tests.tck</groupId>
<artifactId>jakarta-ant-based-tck</artifactId>
<artifactId>jakarta-platform-tck</artifactId>
<version>${tck.version}</version>
<type>zip</type>
<scope>runtime</scope>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public void prepareWorkspace() {
if (cfg.getJakartaeeDir().exists()) {
LOG.log(Level.INFO, "Jakarta EE was already installed, unzipping to {0} skipped.", cfg.getJakartaeeDir());
} else {
zipResolver.unzipDependency("org.glassfish.main.tests.tck", "jakarta-ant-based-tck", cfg.getTckVersion());
zipResolver.unzipDependency("org.glassfish.main.tests.tck", "jakarta-platform-tck", cfg.getTckVersion());
File command = cfg.getJakartaeetckCommand().toFile();
if (command.exists()) {
command.setExecutable(true);
Expand Down
2 changes: 1 addition & 1 deletion appserver/tests/tck/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<module>embedded_ejb_smoke</module>

<module>tck-download</module>
<module>tck-runner</module>
<module>platform-tck-runner</module>

<module>activation</module>
<module>expression_language</module>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@
<version>7.0.11-SNAPSHOT</version>
</parent>

<artifactId>jakarta-ant-based-tck</artifactId>
<artifactId>jakarta-platform-tck</artifactId>
<packaging>pom</packaging>
<name>TCK: Install Jakarta EE TCK</name>
<name>TCK: Install Jakarta EE Platform TCK</name>

<properties>
<!-- Be patient, it is over 500 MB -->
<tck.test.jee.file>jakarta-jakartaeetck-10.0.2.zip</tck.test.jee.file>
<tck.test.jee.url>https://download.eclipse.org/ee4j/jakartaee-tck/jakartaee10/staged/eftl/${tck.test.jee.file}</tck.test.jee.url>
<tck.test.jee.url>https://download.eclipse.org/jakartaee/platform/10/${tck.test.jee.file}</tck.test.jee.url>
</properties>

<build>
Expand Down
2 changes: 1 addition & 1 deletion appserver/tests/tck/tck-download/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<name>TCK: Download and Install Dependencies not in Maven Repos</name>

<modules>
<module>jakarta-ant-based-tck</module>
<module>jakarta-platform-tck</module>
<module>jakarta-activation-tck</module>
<module>jakarta-rest-tck</module>
<module>jakarta-faces-tck</module>
Expand Down

0 comments on commit 51456f8

Please sign in to comment.