-
Notifications
You must be signed in to change notification settings - Fork 15
/
pom.xml
98 lines (88 loc) · 3.21 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
<?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.hazelcast.platform.demos.banking</groupId>
<artifactId>banking-root</artifactId>
<version>5.5</version>
</parent>
<groupId>com.hazelcast.platform.demos.banking.cva</groupId>
<artifactId>cva-root</artifactId>
<packaging>pom</packaging>
<name>Hazelcast Platform - Banking - Credit Value Adjustment</name>
<description>Example implementation for monitoring a series of trades</description>
<properties>
<my.docker.image.prefix>cva</my.docker.image.prefix>
<main.basedir>${project.parent.parent.basedir}</main.basedir>
<!-- Live, probably -->
<my.cluster1.init.size>20</my.cluster1.init.size>
<my.cluster1.name>site1</my.cluster1.name>
<my.cluster1.partitions>25057</my.cluster1.partitions>
<my.cluster1.partitions>1999</my.cluster1.partitions>
<!-- DR, probably, unless you alternate -->
<my.cluster2.init.size>3</my.cluster2.init.size>
<my.cluster2.name>site2</my.cluster2.name>
<my.cluster2.partitions>271</my.cluster2.partitions>
<!-- Common logons for Management Center, Grafana, Prometheus -->
<my.other.admin.user>admin</my.other.admin.user>
<my.other.admin.password>password1</my.other.admin.password>
<!-- So Grafana can find Prometheus service, must match K8S YAML -->
<my.prometheus.name>${my.docker.image.prefix}-prometheus</my.prometheus.name>
<my.prometheus.port>9090</my.prometheus.port>
<my.management.center.name>${my.docker.image.prefix}-management-center</my.management.center.name>
</properties>
<modules>
<module>grafana</module>
<module>prometheus</module>
<module>management-center</module>
<module>protobuf</module>
<module>custom-classes</module>
<module>common</module>
<module>abstract-hazelcast-node</module>
<module>hazelcast-node-site1</module>
<module>hazelcast-node-site2</module>
<module>abstract-hazelcast-client</module>
<module>cpp</module>
<module>cpp-tester</module>
<module>cpp-tester2</module>
<module>cpp-tester3</module>
<module>data-loader</module>
<module>jet-jobs</module>
<module>webapp</module>
<!-- Not used, only for diagnostics
<module>hazelcast-node-site1-cpp</module>
-->
</modules>
<dependencies>
<!-- scope==test -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<type>pom</type>
<scope>import</scope>
<version>${spring-boot.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>