Skip to content

Commit ac1d4d3

Browse files
authored
backport remove wdt.version from pom.xml (#3319)
1 parent d34a716 commit ac1d4d3

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

integration-tests/pom.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@
5353
<wko.it.okd.cluster>${env.OKD}</wko.it.okd.cluster>
5454
<wko.it.oracle.db.operator.release>${env.ORACLE_DB_OPERATOR_RELEASE}</wko.it.oracle.db.operator.release>
5555
<wko.it.oraclelinux.test.version>${env.ORACLELINUX_TEST_VERSION}</wko.it.oraclelinux.test.version>
56-
<wko.it.wdt.version>${wdt.version}</wko.it.wdt.version>
5756
<wko.it.wdt.download.url>${wdt.download.url}</wko.it.wdt.download.url>
5857
<wko.it.wit.download.url>${wit.download.url}</wko.it.wit.download.url>
5958
<wko.it.remoteconsole.download.url>${remoteconsole.download.url}</wko.it.remoteconsole.download.url>
@@ -215,7 +214,6 @@
215214
<wko.it.okd.cluster>${wko.it.okd.cluster}</wko.it.okd.cluster>
216215
<wko.it.oracle.db.operator.release>${wko.it.oracle.db.operator.release}</wko.it.oracle.db.operator.release>
217216
<wko.it.oraclelinux.test.version>${wko.it.oraclelinux.test.version}</wko.it.oraclelinux.test.version>
218-
<wko.it.wdt.version>${wko.it.wdt.version}</wko.it.wdt.version>
219217
<wko.it.wdt.download.url>${wko.it.wdt.download.url}</wko.it.wdt.download.url>
220218
<wko.it.wit.download.url>${wko.it.wit.download.url}</wko.it.wit.download.url>
221219
<wko.it.remoteconsole.download.url>${wko.it.remoteconsole.download.url}</wko.it.remoteconsole.download.url>

integration-tests/src/test/java/oracle/weblogic/kubernetes/actions/ActionConstants.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,11 @@ public interface ActionConstants {
5050
"https://github.com/oracle/weblogic-deploy-tooling/releases/latest";
5151
public static final String WDT_DOWNLOAD_URL =
5252
getNonEmptySystemProperty("wko.it.wdt.download.url", WDT_DOWNLOAD_URL_DEFAULT);
53-
public static final String WDT_VERSION =
54-
getNonEmptySystemProperty("wko.it.wdt.version", "latest");
53+
//WDT_VERSION is used as the sub-directory identifier when we need to find out
54+
//from where we can locate weblogic-deploy.zip file. Right now when we install WDT
55+
//we always put zip file under "latest" sub-directory no matter using "latest" branch or
56+
//explicit version download URL or custom download URL.
57+
public static final String WDT_VERSION = "latest";
5558
public static final String WDT_DOWNLOAD_FILENAME_DEFAULT = "weblogic-deploy.zip";
5659

5760
public static final String IMAGE_TOOL = WORK_DIR + "/imagetool/bin/imagetool.sh";

0 commit comments

Comments
 (0)