Newer
Older

Joze RIHTARSIC
committed
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>eu.europa.ec.edelivery</groupId>

Joze RIHTARSIC
committed
<artifactId>smp-parent-pom</artifactId>

Joze RIHTARSIC
committed
<relativePath>../smp-parent-pom/pom.xml</relativePath>
</parent>
<artifactId>smp-soapui-tests</artifactId>
<packaging>jar</packaging>
<name>smp-soapui-tests</name>
<description>Interation tests suit for SMP</description>
<properties>
<!-- url>http://localhost:7001/smp</url -->

Joze RIHTARSIC
committed
<url>http://localhost:8080/smp</url>
<SMPAdminUser></SMPAdminUser>
<SMPAdminPassword></SMPAdminPassword>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

Joze RIHTARSIC
committed
</properties>
<build>
<plugins>
<plugin>
<groupId>com.smartbear.soapui</groupId>

Joze RIHTARSIC
committed
<artifactId>soapui-pro-maven-plugin</artifactId>

Joze RIHTARSIC
committed
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
<configuration>
<outputFolder>${project.build.directory}/surefire-reports</outputFolder>
<junitReport>true</junitReport>
<printReport>true</printReport>
<soapuiProperties>
<property>
<name>soapui.scripting.library</name>
<value>${project.basedir}/groovy</value>
</property>
<property>
<name>soapui.logroot</name>
<value>${project.build.directory}/soapui/logs/</value>
</property>
<property>
<name>http.nonProxyHosts</name>
<value>localhost|127.*|[::1]</value>
</property>
</soapuiProperties>
<testFailIgnore>true</testFailIgnore>
<projectFile>${project.basedir}/soapui/SMP4.0-Generic-soapui-project.xml</projectFile>

Joze RIHTARSIC
committed
<!--If you want to execute single test case <testCase>SMP001-Create ServiceGroup-Basic Flow-Admin Service Group specified</testCase>-->
<!-- testCase>SMP063-EDELIVERY-364 slash encoding-Tomcat</testCase -->
<!-- testCase>SMP079-EDELIVERY-2806-Basic Flow-BlueCote UTF8 chars</testCase -->

Joze RIHTARSIC
committed
<projectProperties>
<value>url=${url}</value>
<value>SMPAdminUser=${SMPAdminUser}</value>
<value>SMPAdminPassword=${SMPAdminPassword}</value>

Joze RIHTARSIC
committed
</projectProperties>
</configuration>

Joze RIHTARSIC
committed
</plugin>
</plugins>
</build>
</project>