forked from quarkusio/quarkus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
125 lines (119 loc) · 5.22 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<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-tck-parent</artifactId>
<name>Quarkus - TCK - Parent</name>
<packaging>pom</packaging>
<properties>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>
<!-- modules are in profile test-modules -->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>enforce</id>
<phase>${maven-enforcer-plugin.phase}</phase>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<!--
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.
Also we add the requiresMinimalDeploymentDependency rule.
-->
<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>
<requiresMinimalDeploymentDependency implementation="io.quarkus.enforcer.RequiresMinimalDeploymentDependency"/>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<configuration>
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
</configuration>
</plugin>
</plugins>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-bom</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.jboss.arquillian</groupId>
<artifactId>arquillian-bom</artifactId>
<version>${arquillian.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${testng.version}</version>
</dependency>
<!-- Enforce jQuery version that is compatible with TestNG 7.8.0 -->
<dependency>
<groupId>org.webjars</groupId>
<artifactId>jquery</artifactId>
<!-- /!\ this version should not be upgraded, TestNG requires this particular version -->
<version>3.6.1</version>
</dependency>
</dependencies>
</dependencyManagement>
<profiles>
<profile>
<id>test-modules</id>
<activation>
<property>
<name>!no-test-modules</name>
</property>
</activation>
<modules>
<module>jakarta-atinject</module>
<module>jakarta-cdi</module>
<module>jakarta-cdi-lang-model</module>
<module>microprofile-config</module>
<module>microprofile-context-propagation</module>
<module>microprofile-fault-tolerance</module>
<module>microprofile-health</module>
<module>microprofile-jwt</module>
<module>microprofile-graphql</module>
<module>microprofile-metrics</module>
<module>microprofile-reactive-messaging</module>
<module>microprofile-rest-client</module>
<module>microprofile-rest-client-reactive</module>
<module>microprofile-openapi</module>
<module>microprofile-opentelemetry</module>
<module>microprofile-lra</module>
<module>resteasy-reactive</module>
</modules>
</profile>
</profiles>
</project>