forked from mulesoft/mule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
83 lines (79 loc) · 3 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
71
72
73
74
75
76
77
78
79
80
81
82
83
<?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.mule.runtime</groupId>
<artifactId>mule</artifactId>
<version>4.9.0-SNAPSHOT</version>
</parent>
<groupId>org.mule.tests</groupId>
<artifactId>mule-tests</artifactId>
<packaging>pom</packaging>
<name>Mule Tests</name>
<properties>
<formatterConfigPath>../formatter.xml</formatterConfigPath>
<skipMuleModuleMojos>true</skipMuleModuleMojos>
</properties>
<modules>
<module>allure</module>
<module>unit</module>
<module>component-plugin</module>
<module>functional</module>
<module>infrastructure</module>
<module>performance</module>
<module>test-runtime-extension-model</module>
<module>test-extensions</module>
<module>test-plugins</module>
<module>test-policies</module>
<module>test-services</module>
<module>runner</module>
<module>test-processor-chains</module>
<module>model</module>
<module>http-resource-service</module>
<module>core-functional-tests</module>
</modules>
<profiles>
<profile>
<!-- W-13799169: Workaround for flaky issue when running in mule-uber failing with allowlist validation having
all the services dependencies unpacked inside a folder with name activemq-broker or derby-all, as example
'mule-standalone/services/mule-derby-all-4.5.0-SNAPSHOT/ folder', in place of each service folder name -->
<id>not-uber</id>
<activation>
<activeByDefault>false</activeByDefault>
<property>
<name>!uber</name>
</property>
</activation>
<modules>
<module>activemq-broker</module>
<module>derby-all</module>
</modules>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<configuration>
<skip>true</skip>
<skipDeploy>true</skipDeploy>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.mule.runtime</groupId>
<artifactId>mule-dwb-api</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>