-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpom.xml
234 lines (224 loc) · 9.52 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.karamelsoft.axon.bank</groupId>
<artifactId>axon-bank</artifactId>
<packaging>pom</packaging>
<version>0.0.1-SNAPSHOT</version>
<properties>
<java.version>17</java.version>
<kotlin.version>1.8.20</kotlin.version>
<!--<spring-boot.version>3.0.5</spring-boot.version>-->
<spring-boot.version>2.7.10</spring-boot.version>
<axon.version>4.7.2</axon.version>
<dockerfile-maven-plugin.version>1.4.13</dockerfile-maven-plugin.version>
<guava.version>31.1-jre</guava.version>
<kotlin-logging.version>3.0.5</kotlin-logging.version>
<mockk.version>1.12.0</mockk.version>
<inspector-axon-spring-boot-starter.version>0.1.1</inspector-axon-spring-boot-starter.version>
</properties>
<modules>
<module>libraries</module>
<module>domains</module>
<module>views</module>
<module>orchestrators</module>
<module>interfaces</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-bom</artifactId>
<version>${kotlin.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring-boot.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.axonframework</groupId>
<artifactId>axon-bom</artifactId>
<version>${axon.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>io.axoniq.inspector</groupId>
<artifactId>inspector-axon-spring-boot-starter</artifactId>
<version>${inspector-axon-spring-boot-starter.version}</version>
</dependency>
<dependency>
<groupId>org.karamelsoft.axon.bank.libraries</groupId>
<artifactId>mongo</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.karamelsoft.axon.bank.libraries.secrets</groupId>
<artifactId>secrets-docker</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.karamelsoft.axon.bank.libraries.artifacts</groupId>
<artifactId>api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.karamelsoft.axon.bank.libraries.artifacts</groupId>
<artifactId>command</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.karamelsoft.axon.bank.libraries.artifacts</groupId>
<artifactId>command-test</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.karamelsoft.axon.bank.libraries.artifacts</groupId>
<artifactId>module</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.karamelsoft.axon.bank.libraries.artifacts</groupId>
<artifactId>orchestrator</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.karamelsoft.axon.bank.libraries.artifacts</groupId>
<artifactId>interface</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.karamelsoft.axon.bank.libraries.artifacts</groupId>
<artifactId>test</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.karamelsoft.axon.bank.libraries.artifacts</groupId>
<artifactId>view</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.karamelsoft.axon.bank.services.accounts</groupId>
<artifactId>accounts-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.karamelsoft.axon.bank.services.cards</groupId>
<artifactId>cards-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.karamelsoft.axon.bank.services.customers</groupId>
<artifactId>customers-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.karamelsoft.axon.bank.views.customer.dashboard</groupId>
<artifactId>customer-dashboard-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.karamelsoft.axon.bank.orchestrators.payment</groupId>
<artifactId>payment-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<dependency>
<groupId>io.github.microutils</groupId>
<artifactId>kotlin-logging</artifactId>
<version>${kotlin-logging.version}</version>
</dependency>
<dependency>
<groupId>io.mockk</groupId>
<artifactId>mockk</artifactId>
<version>${mockk.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<sourceDirectory>src/main/kotlin</sourceDirectory>
<testSourceDirectory>src/test/kotlin</testSourceDirectory>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot.version}</version>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
<version>${kotlin.version}</version>
<executions>
<execution>
<id>compile</id>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>test-compile</id>
<goals>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
<configuration>
<args>
<arg>-Xjsr305=strict</arg>
</args>
<compilerPlugins>
<plugin>spring</plugin>
</compilerPlugins>
</configuration>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-allopen</artifactId>
<version>${kotlin.version}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>com.spotify</groupId>
<artifactId>dockerfile-maven-plugin</artifactId>
<version>${dockerfile-maven-plugin.version}</version>
<executions>
<execution>
<id>default</id>
<goals>
<goal>build</goal>
<goal>push</goal>
</goals>
</execution>
</executions>
<configuration>
<repository>axonbank/${project.artifactId}</repository>
<tag>${project.version}</tag>
<tag>latest</tag>
<buildArgs>
<JAR_FILE>${project.build.finalName}.jar</JAR_FILE>
</buildArgs>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>