Skip to content

Commit 0b20bb9

Browse files
authored
Merge pull request #32982 from KyleAure/slack-sp-platform
2 parents 94ac9bd + 3be7803 commit 0b20bb9

File tree

20 files changed

+28
-28
lines changed

20 files changed

+28
-28
lines changed

dev/fattest.simplicity/src/componenttest/topology/utils/tck/TCKRunner.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ public TCKRunner withRelativeTCKRunner(String relativeTCKRunner) {
201201
* @param platformVersion the version of the Jakarta EE Platform this TCK tests
202202
* @return this TCKRunner
203203
*/
204-
public TCKRunner withPlatfromVersion(String platformVersion) {
204+
public TCKRunner withPlatformVersion(String platformVersion) {
205205
Objects.requireNonNull(platformVersion);
206206

207207
this.platformVersion = platformVersion;

dev/io.openliberty.jakarta.concurrency.3.0_fat_tck/fat/src/io/openliberty/jakarta/enterprise/concurrent/tck/ConcurrentTckLauncherFull.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2022, 2024 IBM Corporation and others.
2+
* Copyright (c) 2022, 2025 IBM Corporation and others.
33
* All rights reserved. This program and the accompanying materials
44
* are made available under the terms of the Eclipse Public License 2.0
55
* which accompanies this distribution, and is available at
@@ -83,7 +83,7 @@ public void launchConcurrent30TCKFull() throws Exception {
8383
suiteXmlFile = FATSuite.createSuiteXML(FATSuite.PROFILE.FULL);
8484

8585
TCKRunner.build(server, Type.JAKARTA, "Concurrency")
86-
.withPlatfromVersion("10")
86+
.withPlatformVersion("10")
8787
.withQualifiers("full")
8888
.withSuiteFileName(suiteXmlFile)
8989
.withAdditionalMvnProps(additionalProps)

dev/io.openliberty.jakarta.concurrency.3.0_fat_tck/fat/src/io/openliberty/jakarta/enterprise/concurrent/tck/ConcurrentTckLauncherWeb.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2022, 2024 IBM Corporation and others.
2+
* Copyright (c) 2022, 2025 IBM Corporation and others.
33
* All rights reserved. This program and the accompanying materials
44
* are made available under the terms of the Eclipse Public License 2.0
55
* which accompanies this distribution, and is available at
@@ -81,7 +81,7 @@ public void launchConcurrent30TCKWeb() throws Exception {
8181
suiteXmlFile = FATSuite.createSuiteXML(FATSuite.PROFILE.WEB);
8282

8383
TCKRunner.build(server, Type.JAKARTA, "Concurrency")
84-
.withPlatfromVersion("10")
84+
.withPlatformVersion("10")
8585
.withQualifiers("web")
8686
.withSuiteFileName(suiteXmlFile)
8787
.withAdditionalMvnProps(additionalProps)

dev/io.openliberty.jakarta.concurrency.3.1_fat_tck/fat/src/io/openliberty/jakarta/enterprise/concurrent/tck/ConcurrentTckLauncherFull.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public static void tearDown() throws Exception {
8888
@AllowedFFDC // The tested exceptions cause FFDC so we have to allow for this.
8989
public void launchConcurrent31TCKFull() throws Exception {
9090
TCKRunner.build(server, Type.JAKARTA, "Concurrency")
91-
.withPlatfromVersion("11")
91+
.withPlatformVersion("11")
9292
.withQualifiers("full")
9393
.withAdditionalMvnProps(additionalProps)
9494
.withLogging(Map.of("ee.jakarta.tck.concurrent", Level.ALL,

dev/io.openliberty.jakarta.concurrency.3.1_fat_tck/fat/src/io/openliberty/jakarta/enterprise/concurrent/tck/ConcurrentTckLauncherWeb.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public static void tearDown() throws Exception {
8484
@AllowedFFDC // The tested exceptions cause FFDC so we have to allow for this.
8585
public void launchConcurrent31TCKWeb() throws Exception {
8686
TCKRunner.build(server, Type.JAKARTA, "Concurrency")
87-
.withPlatfromVersion("11")
87+
.withPlatformVersion("11")
8888
.withQualifiers("web")
8989
.withAdditionalMvnProps(additionalProps)
9090
.withLogging(Map.of("ee.jakarta.tck.concurrent", Level.ALL,

dev/io.openliberty.jakarta.concurrency.3.2_fat_tck/fat/src/io/openliberty/jakarta/enterprise/concurrent/tck/ConcurrentTckLauncherFull.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public static void tearDown() throws Exception {
8888
@AllowedFFDC // The tested exceptions cause FFDC so we have to allow for this.
8989
public void launchConcurrent31TCKFull() throws Exception {
9090
TCKRunner.build(server, Type.JAKARTA, "Concurrency")
91-
.withPlatfromVersion("12")
91+
.withPlatformVersion("12")
9292
.withQualifiers("full")
9393
.withAdditionalMvnProps(additionalProps)
9494
.withLogging(Map.of("ee.jakarta.tck.concurrent", Level.ALL,

dev/io.openliberty.jakarta.concurrency.3.2_fat_tck/fat/src/io/openliberty/jakarta/enterprise/concurrent/tck/ConcurrentTckLauncherWeb.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public static void tearDown() throws Exception {
8484
@AllowedFFDC // The tested exceptions cause FFDC so we have to allow for this.
8585
public void launchConcurrent31TCKWeb() throws Exception {
8686
TCKRunner.build(server, Type.JAKARTA, "Concurrency")
87-
.withPlatfromVersion("12")
87+
.withPlatformVersion("12")
8888
.withQualifiers("web")
8989
.withAdditionalMvnProps(additionalProps)
9090
.withLogging(Map.of("ee.jakarta.tck.concurrent", Level.ALL,

dev/io.openliberty.jakarta.data.1.0_fat_tck/fat/src/io/openliberty/jakarta/data/tck/DataCoreTckLauncher.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public void launchDataTckCorePersistence() throws Exception {
8888
additionalProps.put("jakarta.data.tck.version", "1.0.1");
8989

9090
TCKRunner.build(persistenceServer, Type.JAKARTA, "Data")
91-
.withPlatfromVersion("11")
91+
.withPlatformVersion("11")
9292
.withQualifiers("core", "persistence")
9393
.withRelativeTCKRunner("publish/tckRunner/platform/")
9494
.withAdditionalMvnProps(additionalProps)
@@ -128,7 +128,7 @@ public void launchDataTckCoreNoSQL() throws Exception {
128128
additionalProps.put("jakarta.data.tck.version", "1.0.1");
129129

130130
TCKRunner.build(noSQLServer, Type.JAKARTA, "Data")
131-
.withPlatfromVersion("11")
131+
.withPlatformVersion("11")
132132
.withQualifiers("core", "NoSQL")
133133
.withRelativeTCKRunner("publish/tckRunner/platform/")
134134
.withAdditionalMvnProps(additionalProps)

dev/io.openliberty.jakarta.data.1.0_fat_tck/fat/src/io/openliberty/jakarta/data/tck/DataFullTckLauncher.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public void launchDataTckFullPersistence() throws Exception {
8282
additionalProps.put("jakarta.data.tck.version", "1.0.1");
8383

8484
TCKRunner.build(server, Type.JAKARTA, "Data")
85-
.withPlatfromVersion("11")
85+
.withPlatformVersion("11")
8686
.withQualifiers("full", "persistence")
8787
.withRelativeTCKRunner("publish/tckRunner/platform/")
8888
.withAdditionalMvnProps(additionalProps)

dev/io.openliberty.jakarta.data.1.0_fat_tck/fat/src/io/openliberty/jakarta/data/tck/DataStandaloneTckLauncher.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2022, 2024 IBM Corporation and others.
2+
* Copyright (c) 2022, 2025 IBM Corporation and others.
33
* All rights reserved. This program and the accompanying materials
44
* are made available under the terms of the Eclipse Public License 2.0
55
* which accompanies this distribution, and is available at
@@ -62,7 +62,7 @@ public void launchDataTckStandaloneNoSQL() throws Exception {
6262
additionalProps.put("jakarta.data.tck.version", "1.0.1");
6363

6464
TCKRunner.build(DONOTSTART, Type.JAKARTA, "Data")
65-
.withPlatfromVersion("11")
65+
.withPlatformVersion("11")
6666
.withQualifiers("standalone", "NoSQL")
6767
.withRelativeTCKRunner("publish/tckRunner/platform/")
6868
.withAdditionalMvnProps(additionalProps)

0 commit comments

Comments
 (0)