Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
pom.xml 3.22 KiB
Newer Older
<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's avatar
Joze RIHTARSIC committed
        <version>4.2-SNAPSHOT</version>
        <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 -->
        <SMPAdminUser></SMPAdminUser>
        <SMPAdminPassword></SMPAdminPassword>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
				<groupId>com.smartbear.soapui</groupId>
GKOPEC's avatar
GKOPEC committed
                <version>5.0.0</version>
                <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>
GKOPEC's avatar
GKOPEC committed
                    <projectFile>${project.basedir}/soapui/SMP4.0-Generic-soapui-project.xml</projectFile>
GKOPEC's avatar
GKOPEC committed
                    <testSuite>PASSING_AUTO_BAMBOO</testSuite>
                    <!--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 -->
                        <value>SMPAdminUser=${SMPAdminUser}</value>
                        <value>SMPAdminPassword=${SMPAdminPassword}</value>