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>
<version>4.0.0-SNAPSHOT</version>

Joze RIHTARSIC
committed
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<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:8080/cipa-smp-full-webapp</url>
</properties>
<build>
<plugins>
<plugin>
<groupId>com.smartbear.soapui</groupId>
<artifactId>soapui-pro-maven-plugin</artifactId>
<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>false</testFailIgnore>
<projectFile>${project.basedir}/soapui/SMP3.0-BAMBOO-soapui-project.xml</projectFile>
<projectProperties>
<value>url=${url}</value>
</projectProperties>
</configuration>
<dependencies>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>

Pawel GUTOWSKI
committed
<version>${mysql.version}</version>

Joze RIHTARSIC
committed
</dependency>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc7</artifactId>

Joze RIHTARSIC
committed
<version>${oracle.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>