forked from quarkusio/quarkus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
79 lines (76 loc) · 3.08 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
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>quarkus-build-parent</artifactId>
<groupId>io.quarkus</groupId>
<version>999-SNAPSHOT</version>
<relativePath>../build-parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>quarkus-test-framework</artifactId>
<name>Quarkus - Test Framework</name>
<packaging>pom</packaging>
<modules>
<module>common</module>
<module>h2</module>
<module>grpc</module>
<module>derby</module>
<module>kubernetes-client</module>
<module>openshift-client</module>
<module>junit5-config</module>
<module>junit5-internal</module>
<module>junit5</module>
<module>junit5-component</module>
<module>junit5-mockito</module>
<module>junit5-mockito-config</module>
<module>vertx</module>
<module>hibernate-reactive-panache</module>
<module>amazon-lambda</module>
<module>arquillian</module>
<module>devmode-test-utils</module>
<module>maven</module>
<module>ldap</module>
<module>security</module>
<module>security-jwt</module>
<module>security-oidc</module>
<module>security-webauthn</module>
<module>oidc-server</module>
<module>keycloak-server</module>
<module>jacoco</module>
<module>mongodb</module>
<module>kafka-companion</module>
<module>google-cloud-functions</module>
</modules>
<build>
<plugins>
<!--
This is a test dependency and as such some test libraries don't have the test scope
which is perfectly fine.
We override the enforcer rules to avoid testing that.
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>enforce</id>
<phase>${maven-enforcer-plugin.phase}</phase>
<configuration>
<rules combine.self="override">
<dependencyConvergence/>
<externalRules>
<location>classpath:enforcer-rules/quarkus-banned-dependencies.xml</location>
</externalRules>
<externalRules>
<location>classpath:enforcer-rules/quarkus-banned-dependencies-okhttp.xml</location>
</externalRules>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>