forked from citrusframework/citrus-simulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
70 lines (62 loc) · 2.05 KB
/
pom.xml
1
2
3
4
5
6
7
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
61
62
63
64
65
66
67
68
69
70
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.citrusframework</groupId>
<artifactId>citrus-simulator</artifactId>
<version>3.1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>citrus-simulator-samples</artifactId>
<name>${project.artifactId}</name>
<packaging>pom</packaging>
<properties>
<spring.boot.start.wait>1000</spring.boot.start.wait>
<spring.boot.start.maxAttempts>60</spring.boot.start.maxAttempts>
<simulator.mode>embedded</simulator.mode>
</properties>
<modules>
<module>sample-bank-service</module>
<module>sample-combined</module>
<module>sample-jms</module>
<module>sample-jms-fax</module>
<module>sample-mail</module>
<module>sample-rest</module>
<module>sample-swagger</module>
<module>sample-ws</module>
<module>sample-ws-client</module>
<module>sample-wsdl</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot.version}</version>
</plugin>
</plugins>
</pluginManagement>
<!-- Do not deploy sample modules to Maven central -->
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<configuration>
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<!-- activating this profile will skip all integration tests -->
<id>skip-it</id>
<properties>
<skip.integration.tests>true</skip.integration.tests>
</properties>
</profile>
</profiles>
</project>