diff options
author | vasraz <vasyl.razinkov@est.tech> | 2021-10-21 17:32:16 +0100 |
---|---|---|
committer | Michael Morris <michael.morris@est.tech> | 2021-11-15 11:50:33 +0000 |
commit | b08ac296b31f001c946b1371f213ac302ff9c12e (patch) | |
tree | 3be6bcc7c025a82ec15fc35061f5f0e7dc024aeb /integration-tests/pom.xml | |
parent | 7353fb39790b51c593cb0f72c6ab46d906758244 (diff) |
Fix critical cross site scripting
Change-Id: I66a220f71a2e950055107a725191b46bcbe8c6a6
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech>
Issue-ID: SDC-3607
Issue-ID: SDC-3755
Diffstat (limited to 'integration-tests/pom.xml')
-rw-r--r-- | integration-tests/pom.xml | 68 |
1 files changed, 37 insertions, 31 deletions
diff --git a/integration-tests/pom.xml b/integration-tests/pom.xml index 1056fbd4c9..d0eebdba5d 100644 --- a/integration-tests/pom.xml +++ b/integration-tests/pom.xml @@ -290,6 +290,12 @@ limitations under the License. <version>${spring.version}</version> <scope>test</scope> </dependency> + <dependency> + <groupId>org.onap.portal.sdk</groupId> + <artifactId>epsdk-fw</artifactId> + <version>${ecomp.version}</version> + <scope>test</scope> + </dependency> </dependencies> <build> @@ -435,6 +441,7 @@ limitations under the License. <verbose>${verbose}</verbose> <apiVersion>${docker.api.version}</apiVersion> <autoCreateCustomNetworks>true</autoCreateCustomNetworks> + <startParallel>true</startParallel> <images> <image> <name>onap/sdc-cassandra:${it.docker.version}</name> @@ -524,7 +531,7 @@ limitations under the License. <alias>sdc-cassandra-onboard-init</alias> <run> <dependsOn> - <container>sdc-cassandra</container> + <container>sdc-cassandra-init</container> </dependsOn> <env> <RELEASE>${project.version}</RELEASE> @@ -557,7 +564,7 @@ limitations under the License. <name>onap/sdc-onboard-backend:${it.docker.version}</name> <alias>sdc-onboard-backend</alias> <run> - <dependsOn> + <dependsOn> <container>sdc-cassandra-onboard-init</container> </dependsOn> <env> @@ -738,9 +745,6 @@ limitations under the License. <name>onap/sdc-simulator:${it.docker.version}</name> <alias>sdc-simulator</alias> <run> - <dependsOn> - <container>sdc-frontend</container> - </dependsOn> <env> <!--<FE_URL>${it.env.name}</FE_URL>--> <JAVA_OPTIONS>-Xmx128m -Xms128m -Xss1m</JAVA_OPTIONS> @@ -761,13 +765,15 @@ limitations under the License. <ports> <port>8080</port> <port>8443</port> + <port>5000</port> </ports> </tcp> </wait> <ports> <!-- http://localhost:8285/login to access SDC --> - <port>8285:8080</port> + <port>8285:8080</port> <port>8286:8443</port> + <port>5000:5000</port> </ports> <network> <mode>custom</mode> @@ -821,32 +827,32 @@ limitations under the License. </volumes> </run> </image> - <image> - <name>onap/org.onap.sdc.sdc-helm-validator:${it.helm-validator.version}</name> - <alias>helm-validator</alias> - <run> - <skip>${it.helm-validator.disabled}</skip> - <hostname>helm-validator</hostname> - <wait> - <time>20000</time> - <tcp> - <host>helm-validator</host> - <mode>direct</mode> - <ports> - <port>8080</port> - </ports> - </tcp> - </wait> - <ports> - <port>8085:8080</port> - </ports> - <network> - <mode>custom</mode> - <name>sdc-network</name> + <image> + <name>onap/org.onap.sdc.sdc-helm-validator:${it.helm-validator.version}</name> <alias>helm-validator</alias> - </network> - </run> - </image> + <run> + <skip>${it.helm-validator.disabled}</skip> + <hostname>helm-validator</hostname> + <wait> + <time>20000</time> + <tcp> + <host>helm-validator</host> + <mode>direct</mode> + <ports> + <port>8080</port> + </ports> + </tcp> + </wait> + <ports> + <port>8085:8080</port> + </ports> + <network> + <mode>custom</mode> + <name>sdc-network</name> + <alias>helm-validator</alias> + </network> + </run> + </image> </images> </configuration> <executions> |