-
Notifications
You must be signed in to change notification settings - Fork 2
/
pom.xml
190 lines (163 loc) · 9.6 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
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>
<!-- =========================================================================================================== -->
<!-- Project information -->
<groupId>org.royllo.explorer</groupId>
<artifactId>explorer</artifactId>
<version>0.2.3-SNAPSHOT</version>
<name>Royllo - A Taproot asset explorer</name>
<description>Royllo explorer allows you to search for Taproot assets created on the Bitcoin blockchain</description>
<packaging>pom</packaging>
<url>https://github.com/royllo/explorer</url>
<licenses>
<license>
<name>GNU General Public License v3.0</name>
<url>https://github.com/royllo/explorer/blob/development/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-- =========================================================================================================== -->
<!-- =========================================================================================================== -->
<!-- Developers -->
<developers>
<developer>
<id>straumat</id>
<email>stephane.traumat@gmail.com</email>
<name>Stéphane Traumat</name>
<url>https://github.com/straumat</url>
</developer>
</developers>
<!-- =========================================================================================================== -->
<!-- =========================================================================================================== -->
<!-- Source Code Management -->
<scm>
<url>https://github.com/royllo/explorer</url>
<connection>scm:git:git://github.com/royllo/explorer.git</connection>
<developerConnection>scm:git:git@github.com:royllo/explorer.git</developerConnection>
</scm>
<!-- =========================================================================================================== -->
<!-- =========================================================================================================== -->
<!-- Issues -->
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/royllo/explorer/issues</url>
</issueManagement>
<!-- =========================================================================================================== -->
<!-- =========================================================================================================== -->
<!-- Project configuration -->
<properties>
<!-- ======================================================================================================= -->
<!-- Java build configuration -->
<java.version>21</java.version>
<maven.compiler.target>21</maven.compiler.target>
<maven.compiler.source>21</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- ======================================================================================================= -->
<!-- Project libraries -->
<spring.version>3.3.4</spring.version>
<graphql-dgs-platform-dependencies.version>9.1.1</graphql-dgs-platform-dependencies.version>
<graphql-dgs-codegen-core.version>6.3.0</graphql-dgs-codegen-core.version>
<graphql-dgs-codegen-client-core.version>5.1.17</graphql-dgs-codegen-client-core.version>
<liquibase.version>4.29.2</liquibase.version>
<jdbc.driver.hsqldb.version>2.7.3</jdbc.driver.hsqldb.version>
<jdbc.driver.postgresql.version>42.7.3</jdbc.driver.postgresql.version>
<lombok.version>1.18.34</lombok.version>
<lombok.mapstruct.version>0.2.0</lombok.mapstruct.version>
<mapstruct.version>1.6.1</mapstruct.version>
<tika-core.version>2.9.2</tika-core.version>
<!-- ======================================================================================================= -->
<!-- Cloud libraries -->
<minio.version>8.5.12</minio.version>
<jimfs.version>1.3.0</jimfs.version>
<undertow.version>2.3.16.Final</undertow.version>
<!-- ======================================================================================================= -->
<!-- Web libraries -->
<bucket4j-core.version>8.10.1</bucket4j-core.version>
<caffeine.version>3.1.8</caffeine.version>
<thymeleaf-layout-dialect.version>3.3.0</thymeleaf-layout-dialect.version>
<htmx-spring-boot-thymeleaf.version>3.5.1</htmx-spring-boot-thymeleaf.version>
<bitcoin-spring-boot-starter.version>0.13.0</bitcoin-spring-boot-starter.version>
<webjars-locator.version>0.52</webjars-locator.version>
<htmx.version>2.0.2</htmx.version>
<alpinejs.version>3.14.1</alpinejs.version>
<easymde.version>2.18.0</easymde.version>
<commonmark.version>0.23.0</commonmark.version>
<!-- ======================================================================================================= -->
<!-- Test libraries -->
<testcontainers.version>1.20.1</testcontainers.version>
<mockito-core.version>5.13.0</mockito-core.version>
<okhttp.version>5.0.0-alpha.14</okhttp.version>
<!-- ======================================================================================================= -->
<!-- Maven plugins -->
<maven.checkstyle.plugin.version>3.5.0</maven.checkstyle.plugin.version>
<maven.graphqlcodegen.plugin.version>1.61.5</maven.graphqlcodegen.plugin.version>
<maven.puppycrawl.checkstyle.version>10.18.1</maven.puppycrawl.checkstyle.version>
<maven.compiler.plugin.version>3.13.0</maven.compiler.plugin.version>
<maven.source.plugin.version>3.3.1</maven.source.plugin.version>
<maven.resources.plugin.version>3.3.1</maven.resources.plugin.version>
<maven.javadoc.plugin.version>3.10.0</maven.javadoc.plugin.version>
<maven.jar.plugin.version>3.4.2</maven.jar.plugin.version>
<maven.archetype-packaging.version>3.2.1</maven.archetype-packaging.version>
<frontend-maven-plugin.version>1.15.1</frontend-maven-plugin.version>
<frontend-maven-plugin.nodeVersion>v20.10.0</frontend-maven-plugin.nodeVersion>
<frontend-maven-plugin.npmVersion>10.2.3</frontend-maven-plugin.npmVersion>
</properties>
<!-- =========================================================================================================== -->
<!-- =========================================================================================================== -->
<!-- Modules -->
<modules>
<!-- Libraries -->
<module>util/test/common-test</module>
<!-- Core services -->
<module>backend/explorer-core/autoconfigure</module>
<module>backend/explorer-core/starter</module>
<!-- Servers -->
<module>backend/servers/explorer-batch</module>
<module>backend/servers/explorer-api</module>
<module>backend/servers/explorer-web</module>
</modules>
<!-- =========================================================================================================== -->
<!-- =========================================================================================================== -->
<!-- Build configuration -->
<build>
<!-- Plugins -->
<plugins>
<!-- Release plugin -->
<plugin>
<groupId>com.amashchenko.maven.plugin</groupId>
<artifactId>gitflow-maven-plugin</artifactId>
<version>1.21.0</version>
<configuration>
<gitFlowConfig>
<productionBranch>production</productionBranch>
<developmentBranch>development</developmentBranch>
</gitFlowConfig>
<commitMessages>
<featureStartMessage>Update versions for feature branch</featureStartMessage>
<featureFinishMessage>Update versions for development branch</featureFinishMessage>
<hotfixStartMessage>Update versions for hotfix</hotfixStartMessage>
<hotfixFinishMessage>Update for next development version</hotfixFinishMessage>
<releaseStartMessage>Update versions for release</releaseStartMessage>
<releaseFinishMessage>Update for next development version</releaseFinishMessage>
<tagHotfixMessage>Tag hotfix</tagHotfixMessage>
<tagReleaseMessage>Tag release</tagReleaseMessage>
</commitMessages>
</configuration>
</plugin>
</plugins>
</build>
<!-- =========================================================================================================== -->
<!-- =========================================================================================================== -->
<!-- Spring boot -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.3.4</version>
<relativePath/>
</parent>
<!-- =========================================================================================================== -->
</project>