-
Notifications
You must be signed in to change notification settings - Fork 17
/
pom.xml
66 lines (57 loc) · 2.76 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
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.microsoft.azure.iaas</groupId>
<artifactId>azure-javaee-iaas-parent</artifactId>
<version>1.0.22</version>
</parent>
<groupId>com.rhel.jboss.azure</groupId>
<artifactId>rhel-jboss-templates</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<name>${project.artifactId}</name>
<url>https://github.com/azure-javaee/rhel-jboss-templates</url>
<repositories>
<repository>
<id>github</id>
<name>GitHub Packages</name>
<url>https://maven.pkg.github.com/azure-javaee/azure-javaee-iaas</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>github</id>
<name>GitHub Packages</name>
<url>https://maven.pkg.github.com/azure-javaee/azure-javaee-iaas</url>
</pluginRepository>
</pluginRepositories>
<properties>
<!-- This property is used to resolve the arm-ttk to where it is actually checked out locally.-->
<rootmoduledir>${basedir}</rootmoduledir>
<template.validation.tests.directory>${rootmoduledir}/../arm-ttk/arm-ttk</template.validation.tests.directory>
<!-- This property is used in the project azure-javaee-iaas,
check https://github.com/azure-javaee/azure-javaee-iaas/blob/b7b966b502212c40f23fd391a088da6a9b20bdc3/arm-parent/pom.xml#L361 -->
<template.azure-common.properties.url>file:///${rootmoduledir}/utilities/azure-common.properties</template.azure-common.properties.url>
<version.eap-rhel-byos>1.0.21</version.eap-rhel-byos>
<version.eap-rhel-byos-multivm>1.0.29</version.eap-rhel-byos-multivm>
<version.eap-rhel-byos-vmss>1.0.27</version.eap-rhel-byos-vmss>
<version.eap74-rhel8-payg>1.0.32</version.eap74-rhel8-payg>
<version.eap74-rhel8-payg-multivm>1.0.33</version.eap74-rhel8-payg-multivm>
<version.eap74-rhel8-payg-vmss>1.0.34</version.eap74-rhel8-payg-vmss>
<version.eap-aro>1.0.20</version.eap-aro>
</properties>
<modules>
<module>eap-rhel-byos</module>
<module>eap-rhel-byos-multivm</module>
<module>eap-rhel-byos-vmss</module>
<module>eap74-rhel8-payg</module>
<module>eap74-rhel8-payg-multivm</module>
<module>eap74-rhel8-payg-vmss</module>
<module>eap-aro</module>
<module>eap-coffee-app</module>
<module>eap-session-replication</module>
</modules>
</project>