-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpom.xml
103 lines (92 loc) · 4.48 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ JBoss, Home of Professional Open Source.
~ Copyright 2022 Red Hat, Inc., and individual contributors
~ as indicated by the @author tags.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
~
-->
<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>org.wildfly.tools</groupId>
<artifactId>wildfly-parent</artifactId>
<version>1.0.5.Final</version>
</parent>
<groupId>org.wildfly.cloud-tests</groupId>
<artifactId>wildfly-cloud-tests-parent</artifactId>
<version>1.0.0.Alpha3-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<!-- Image creation properties -->
<image.name.wildfly.runtime>quay.io/wildfly/wildfly-runtime:latest</image.name.wildfly.runtime>
<version.wildfly>34.0.1.Final</version.wildfly>
<version.wildfly.cloud.galleon.pack>7.0.2.Final</version.wildfly.cloud.galleon.pack>
<version.wildfly.datasources.galleon.pack>9.1.0.Final</version.wildfly.datasources.galleon.pack>
<!-- Plugin versions -->
<version.io.fabric8.docker-maven-plugin>0.45.0</version.io.fabric8.docker-maven-plugin>
<version.org.apache.maven.plugins.maven-failsafe-plugin>3.5.2</version.org.apache.maven.plugins.maven-failsafe-plugin>
<version.org.codehaus.mojo.exec-maven-plugin>3.4.1</version.org.codehaus.mojo.exec-maven-plugin>
<version.org.wildfly.plugins.wildfly-maven-plugin>5.1.1.Final</version.org.wildfly.plugins.wildfly-maven-plugin>
<version.org.jboss.eap.plugins.eap-maven-plugin>1.0.1.Final-redhat-00008</version.org.jboss.eap.plugins.eap-maven-plugin>
<!-- Kubernetes registry parameters -->
<wildfly.cloud.test.docker.host>localhost</wildfly.cloud.test.docker.host>
<wildfly.cloud.test.docker.port>5000</wildfly.cloud.test.docker.port>
<dekorate.docker.registry>${wildfly.cloud.test.docker.host}:${wildfly.cloud.test.docker.port}</dekorate.docker.registry>
<!-- Configuration parameters -->
<maven.javadoc.skip>true</maven.javadoc.skip>
<skip.javadoc>${maven.javadoc.skip}</skip.javadoc>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<skip>${skip.javadoc}</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>${version.org.apache.maven.plugins.maven-failsafe-plugin}</version>
</plugin>
<plugin>
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
<version>${version.org.wildfly.plugins.wildfly-maven-plugin}</version>
</plugin>
<plugin>
<groupId>io.fabric8</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>${version.io.fabric8.docker-maven-plugin}</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>${version.org.codehaus.mojo.exec-maven-plugin}</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<modules>
<module>common</module>
<module>images</module>
<module>test-bom</module>
<module>tests</module>
</modules>
</project>