diff options
author | vasraz <vasyl.razinkov@est.tech> | 2023-08-22 15:27:30 +0100 |
---|---|---|
committer | JEFF VAN DAM <jeff.van.dam@est.tech> | 2023-08-28 10:32:05 +0000 |
commit | e5ce5b1b72e9421ba4bb772c41215e837f7517dd (patch) | |
tree | 3bc1b4b16b20587ffc73b4f3b2bc1980da51b959 | |
parent | e8ea5ff2f9498ff0309d16b4628c29c2b8d345d0 (diff) |
Replace deprecated maven parameters
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech>
Change-Id: I0d99fbebc3479b946b1c694e1a37301d18376af2
Issue-ID: SDC-4600
-rw-r--r-- | integration-tests/pom.xml | 36 |
1 files changed, 12 insertions, 24 deletions
diff --git a/integration-tests/pom.xml b/integration-tests/pom.xml index d3045e51fb..801e21527f 100644 --- a/integration-tests/pom.xml +++ b/integration-tests/pom.xml @@ -1196,12 +1196,9 @@ limitations under the License. <configuration> <forkCount>1</forkCount> <reuseForks>true</reuseForks> - <systemProperties> - <property> - <name>testng.dtd.http</name> - <value>true</value> - </property> - </systemProperties> + <systemPropertyVariables> + <testng.dtd.http>true</testng.dtd.http> + </systemPropertyVariables> <suiteXmlFiles> <file>src/test/resources/ci/testSuites/backend/onapApiSanity.xml</file> <file>src/test/resources/ci/testSuites/frontend/onapUiSanity.xml</file> @@ -1260,12 +1257,9 @@ limitations under the License. <configuration> <forkCount>1</forkCount> <reuseForks>true</reuseForks> - <systemProperties> - <property> - <name>testng.dtd.http</name> - <value>true</value> - </property> - </systemProperties> + <systemPropertyVariables> + <testng.dtd.http>true</testng.dtd.http> + </systemPropertyVariables> <suiteXmlFiles> <file>src/test/resources/ci/testSuites/backend/onapApiSanity.xml</file> <file>src/test/resources/ci/testSuites/frontend/onapUiSanity.xml</file> @@ -1294,12 +1288,9 @@ limitations under the License. <configuration> <forkCount>1</forkCount> <reuseForks>true</reuseForks> - <systemProperties> - <property> - <name>testng.dtd.http</name> - <value>true</value> - </property> - </systemProperties> + <systemPropertyVariables> + <testng.dtd.http>true</testng.dtd.http> + </systemPropertyVariables> <suiteXmlFiles> <file>src/test/resources/ci/testSuites/backend/onapApiSanity.xml</file> <file>src/test/resources/ci/testSuites/backend/helmValidatorTests.xml</file> @@ -1326,12 +1317,9 @@ limitations under the License. <configuration> <forkCount>1</forkCount> <reuseForks>true</reuseForks> - <systemProperties> - <property> - <name>testng.dtd.http</name> - <value>true</value> - </property> - </systemProperties> + <systemPropertyVariables> + <testng.dtd.http>true</testng.dtd.http> + </systemPropertyVariables> <suiteXmlFiles> <file>src/test/resources/ci/testSuites/frontend/onapUiSanity.xml</file> <file>src/test/resources/ci/testSuites/frontend/helmValidatorTests.xml</file> |