-
Notifications
You must be signed in to change notification settings - Fork 97
Expand file tree
/
Copy pathexample-configuration.xml
More file actions
29 lines (23 loc) · 911 Bytes
/
example-configuration.xml
File metadata and controls
29 lines (23 loc) · 911 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<configuration xmlns="https://github.com/qoomon/maven-git-versioning-extension" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://github.com/qoomon/maven-git-versioning-extension https://qoomon.github.io/maven-git-versioning-extension/configuration-9.8.2.xsd">
<disable>false</disable>
<updatePom>false</updatePom>
<describeTagMaxDepth>100</describeTagMaxDepth>
<refs considerTagsOnBranches="true">
<ref type="tag">
<pattern>v(.*)</pattern>
<version>${ref.1}</version>
</ref>
<ref type="branch">
<pattern>.*</pattern>
<version>${ref}</version>
<properties>
<name>value</name>
</properties>
</ref>
</refs>
<rev>
<version>${commit}</version>
</rev>
</configuration>