Skip to content

Commit 1ad3097

Browse files
committed
changing to boolean field
Signed-off-by: Arun Venmany <arun.kumar.v.n@ibm.com>
1 parent 434719d commit 1ad3097

File tree

13 files changed

+11
-12
lines changed

13 files changed

+11
-12
lines changed

.github/workflows/maven.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
matrix:
2424
# test against latest update of each major Java version, as well as specific updates of LTS versions:
2525
RUNTIME: [ol, wlp]
26-
RUNTIME_VERSION: [25.0.0.12]
26+
RUNTIME_VERSION: [25.0.0.9]
2727
java: [25, 21, 17, 11, 8]
2828
exclude:
2929
- java: 8
@@ -135,7 +135,7 @@ jobs:
135135
matrix:
136136
# test against latest update of each major Java version, as well as specific updates of LTS versions:
137137
RUNTIME: [ol, wlp]
138-
RUNTIME_VERSION: [ 25.0.0.12 ]
138+
RUNTIME_VERSION: [ 25.0.0.9 ]
139139
java: [ 25, 21, 17, 11, 8 ]
140140
exclude:
141141
- java: 8

liberty-maven-plugin/src/it/package-type-config-older-liberty-it/invoker.properties renamed to liberty-maven-plugin/src/it/package-type-config-new-posix-it/invoker.properties

File renamed without changes.

liberty-maven-plugin/src/it/package-type-config-older-liberty-it/pom.xml renamed to liberty-maven-plugin/src/it/package-type-config-new-posix-it/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<version>1.0-SNAPSHOT</version>
1010
</parent>
1111

12-
<artifactId>package-type-config-older-liberty-it</artifactId>
12+
<artifactId>package-type-config-new-posix-it</artifactId>
1313
<packaging>war</packaging>
1414

1515
<properties>
@@ -63,8 +63,8 @@
6363
<appsDirectory>apps</appsDirectory>
6464
<stripVersion>true</stripVersion>
6565
<packageName>${project.artifactId}</packageName>
66-
<!--hard coding liberty version for testing package fix is working for older versions as well-->
67-
<libertyRuntimeVersion>25.0.0.9</libertyRuntimeVersion>
66+
<!--hard coding liberty version for testing package fix is working-->
67+
<libertyRuntimeVersion>25.0.0.12</libertyRuntimeVersion>
6868
</configuration>
6969
<executions>
7070
<execution>

liberty-maven-plugin/src/it/package-type-config-older-liberty-it/src/main/java/net/wasdev/wlp/test/servlet/HelloServlet.java renamed to liberty-maven-plugin/src/it/package-type-config-new-posix-it/src/main/java/net/wasdev/wlp/test/servlet/HelloServlet.java

File renamed without changes.

liberty-maven-plugin/src/it/package-type-config-older-liberty-it/src/main/liberty/config/server.xml renamed to liberty-maven-plugin/src/it/package-type-config-new-posix-it/src/main/liberty/config/server.xml

File renamed without changes.

liberty-maven-plugin/src/it/package-type-config-older-liberty-it/src/main/webapp/WEB-INF/web.xml renamed to liberty-maven-plugin/src/it/package-type-config-new-posix-it/src/main/webapp/WEB-INF/web.xml

File renamed without changes.

liberty-maven-plugin/src/it/package-type-config-older-liberty-it/src/main/webapp/index.html renamed to liberty-maven-plugin/src/it/package-type-config-new-posix-it/src/main/webapp/index.html

File renamed without changes.

liberty-maven-plugin/src/it/package-type-config-older-liberty-it/src/test/java/net/wasdev/wlp/test/servlet/it/PackageTypeJarTest.java renamed to liberty-maven-plugin/src/it/package-type-config-new-posix-it/src/test/java/net/wasdev/wlp/test/servlet/it/PackageTypeJarTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
*/
3636
public class PackageTypeJarTest {
3737

38-
private String projectBuildName = "package-directory-with space/package-type-config-older-liberty-it.jar";
38+
private String projectBuildName = "package-directory-with space/package-type-config-new-posix-it.jar";
3939

4040
@Test
4141
public void testPackageFileJarExists() {

liberty-maven-plugin/src/it/package-type-config-older-liberty-it/src/test/java/net/wasdev/wlp/test/servlet/it/PackageTypeRunnableJarTest.java renamed to liberty-maven-plugin/src/it/package-type-config-new-posix-it/src/test/java/net/wasdev/wlp/test/servlet/it/PackageTypeRunnableJarTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
*/
3636
public class PackageTypeRunnableJarTest {
3737

38-
private String projectBuildName = "package-type-config-older-liberty-it.jar";
38+
private String projectBuildName = "package-type-config-new-posix-it.jar";
3939

4040
@Test
4141
public void testPackageFileRunnableJarExists() {

liberty-maven-plugin/src/it/package-type-config-older-liberty-it/src/test/java/net/wasdev/wlp/test/servlet/it/PackageTypeTarGzTest.java renamed to liberty-maven-plugin/src/it/package-type-config-new-posix-it/src/test/java/net/wasdev/wlp/test/servlet/it/PackageTypeTarGzTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
*/
3030
public class PackageTypeTarGzTest {
3131

32-
private String projectBuildName = "package-type-config-older-liberty-it.tar.gz";
32+
private String projectBuildName = "package-type-config-new-posix-it.tar.gz";
3333

3434
@Test
3535
public void testPackageFileTarGzExists() {

0 commit comments

Comments
 (0)