This repository has been archived by the owner on Jun 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
/
pom.xml
127 lines (117 loc) · 6.36 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
<?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>com.oakinvest.b2g</groupId>
<artifactId>blockchain2graph</artifactId>
<version>3.2.2-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Blockchain2graph</name>
<description>Extract blockchain data into a graph database</description>
<url>https://straumat.github.io/blockchain2graph</url>
<licenses>
<license>
<name>GNU General Public License, Version 3.0</name>
<url>https://raw.githubusercontent.com/straumat/blockchain2graph/master/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-- =========================================================================================================== -->
<!-- =========================================================================================================== -->
<!-- Organization -->
<organization>
<name>Oak Invest</name>
<url>http://www.oak-invest.com</url>
</organization>
<!-- =========================================================================================================== -->
<!-- =========================================================================================================== -->
<!-- Developers -->
<developers>
<!-- Stéphane Traumat (straumat) -->
<developer>
<id>straumat</id>
<name>Stéphane Traumat</name>
<email>stephane.traumat@gmail.com</email>
<url>https://about.me/straumat</url>
<organization>Oak Invest</organization>
<organizationUrl>http://www.oak-invest.com</organizationUrl>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>Europe/Paris</timezone>
</developer>
</developers>
<!-- =========================================================================================================== -->
<!-- =========================================================================================================== -->
<!-- Source Code Management -->
<scm>
<connection>scm:git:git@github.com:straumat/blockchain2graph.git</connection>
<url>scm:git:git@github.com:straumat/blockchain2graph.git</url>
<developerConnection>scm:git:git@github.com:straumat/blockchain2graph.git</developerConnection>
</scm>
<!-- =========================================================================================================== -->
<!-- =========================================================================================================== -->
<!-- Issue management -->
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/straumat/blockchain2graph/issues</url>
</issueManagement>
<!-- =========================================================================================================== -->
<!-- =========================================================================================================== -->
<!-- Project configuration -->
<properties>
<!-- Java project configuration -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>11</java.version>
</properties>
<!-- =========================================================================================================== -->
<!-- =========================================================================================================== -->
<!-- Modules -->
<modules>
<module>bitcoin-neo4j</module>
</modules>
<!-- =========================================================================================================== -->
<!-- =========================================================================================================== -->
<!-- Spring boot -->
<parent>
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.5.RELEASE</version>
<relativePath/>
</parent>
<!-- =========================================================================================================== -->
<!-- =========================================================================================================== -->
<!-- Build configuration -->
<build>
<!-- Plugins -->
<plugins>
<!-- Release plugin -->
<plugin>
<groupId>com.amashchenko.maven.plugin</groupId>
<artifactId>gitflow-maven-plugin</artifactId>
<version>1.15.0</version>
<configuration>
<gitFlowConfig>
<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>
<!-- =========================================================================================================== -->
</project>