-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpom.xml
50 lines (44 loc) · 2.07 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright The WildFly Authors
~ SPDX-License-Identifier: Apache-2.0
-->
<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>
<groupId>org.wildfly.clustering.examples</groupId>
<artifactId>wildfly-clustering-examples-parent</artifactId>
<version>33.0.0.Final-SNAPSHOT</version>
<packaging>pom</packaging>
<name>WildFly Clustering Examples (parent)</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<version.wildfly>33.0.0.Final</version.wildfly>
<version.org.wildfly.plugins.wildfly-maven-plugin>4.2.1.Final</version.org.wildfly.plugins.wildfly-maven-plugin>
<version.clusterbench>7.0.0.Final</version.clusterbench>
<version.org.apache.maven.plugins.maven-dependency-plugin>3.6.0</version.org.apache.maven.plugins.maven-dependency-plugin>
<version.org.apache.maven.plugins.maven-clean-plugin>3.3.2</version.org.apache.maven.plugins.maven-clean-plugin>
</properties>
<modules>
<module>mod_cluster-discovery</module>
<module>mod_cluster-with-tls</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.wildfly.bom</groupId>
<artifactId>wildfly-ee-with-tools</artifactId>
<scope>import</scope>
<type>pom</type>
<version>${version.wildfly}</version>
</dependency>
<dependency>
<groupId>org.jboss.test</groupId>
<artifactId>clusterbench-ee10-ejb</artifactId>
<type>jar</type>
<version>${version.clusterbench}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>