forked from frankiegao123/mask-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
280 lines (245 loc) · 13.7 KB
/
pom.xml
File metadata and controls
280 lines (245 loc) · 13.7 KB
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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
<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>
<groupId>com.frankiegao123</groupId>
<artifactId>mask-utils</artifactId>
<version>1.0.0-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.0</version>
<configuration>
<compilerVersion>1.6</compilerVersion>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<index>true</index>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
<manifestEntries>
<Build-Version>${project.version}-${maven.build.timestamp}</Build-Version>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>2.1</version>
<configuration>
<attach>true</attach>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<executions>
<execution>
<id>javadoc-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<docencoding>UTF-8</docencoding>
</configuration>
</plugin>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<goals>
<goal>revision</goal>
</goals>
</execution>
</executions>
<configuration>
<!-- If you'd like to tell the plugin where your .git directory
is, use this setting, otherwise we'll perform a search trying to figure out
the right directory. It's better to add it explicitly IMHO. -->
<dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
<!-- that's the default value, you don't have to set it -->
<prefix>git</prefix>
<!-- that's the default value -->
<dateFormat>yyyy-MM-dd HH-mm-ss</dateFormat>
<!-- false is default here, it prints some more information during
the build -->
<verbose>false</verbose>
<!-- ALTERNATE SETUP - GENERATE FILE -->
<!-- If you want to keep git information, even in your WAR file
etc, use this mode, which will generate a properties file (with filled out
values) which you can then normally read using new Properties().load(/**/) -->
<!-- this is false by default, forces the plugin to generate the
git.properties file -->
<generateGitPropertiesFile>true</generateGitPropertiesFile>
<!-- The path for the to be generated properties file, it's relative
to ${project.basedir} The default value is ${project.build.outputDirectory}/git.properties
*Note*: If you plan to set the generateGitPropertiesFilename-Path to a location
where usally the source-files comes from (e.g. src/main/resources) and experience
that your IDE (e.g. eclipse) invokes "Maven Project Builder" once every second,
the chances that you are using an IDE where the src-folder is a watched folder
for files that are *only* edited by humans is pretty high. For further information
refer to the manual for your specifc IDE and check the worflow of "incremental
project builders". In order to fix this problem we recommend to set the generateGitPropertiesFilename-Path
to a target folder (e.g. ${project.build.outputDirectory}) since this is
the place where all derived/generated resources should go. -->
<generateGitPropertiesFilename>${project.build.outputDirectory}/META-INF/git.properties</generateGitPropertiesFilename>
<!-- Denotes the format to save properties in. Valid options are
"properties" (default) and "json". Properties will be saved to the generateGitPropertiesFilename
if generateGitPropertiesFile is set to `true`. -->
<format>properties</format>
<!-- this is true by default; You may want to set this to false,
if the plugin should run inside a <packaging>pom</packaging> project. Most
projects won't need to override this property. For an use-case for this kind
of behaviour see: https://github.com/ktoso/maven-git-commit-id-plugin/issues/21 -->
<skipPoms>true</skipPoms>
<!-- @since 2.1.4 -->
<!-- Tell maven-git-commit-id to inject the git properties into
all reactor projects not just the current one. For details about why you
might want to skip this, read this issue: https://github.com/ktoso/maven-git-commit-id-plugin/pull/65
The property is set to ``false`` by default to prevent the overriding of
properties that may be unrelated to the project. -->
<injectAllReactorProjects>false</injectAllReactorProjects>
<!-- @since 2.0.4 -->
<!-- true by default, controls whether the plugin will fail when
no .git directory is found, when set to false the plugin will just skip execution -->
<failOnNoGitDirectory>true</failOnNoGitDirectory>
<!-- @since 2.1.5 -->
<!-- true by default, controls whether the plugin will fail if
it was unable to obtain enough data for a complete run, if you don't care
about this, you may want to set this value to false. -->
<failOnUnableToExtractRepoInfo>true</failOnUnableToExtractRepoInfo>
<!-- @since 2.1.8 -->
<!-- skip the plugin execution completely. This is useful for e.g.
profile activated plugin invocations or to use properties to enable / disable
pom features. Default value is 'false'. -->
<skip>false</skip>
<!-- @since 2.1.12 -->
<!-- Use with caution! In a multi-module build, only run once.
This means that the plugins effects will only execute once, for the parent
project. This probably won't "do the right thing" if your project has more
than one git repository. Important: If you're using `generateGitPropertiesFile`,
setting `runOnlyOnce` will make the plugin only generate the file in the
directory where you started your build (!). The `git.*` maven properties
are available in all modules. Default value is `false`. -->
<runOnlyOnce>false</runOnlyOnce>
<!-- @since 2.1.9 -->
<!-- Can be used to exclude certain properties from being emitted
into the resulting file. May be useful when you want to hide {@code git.remote.origin.url}
(maybe because it contains your repo password?), or the email of the committer
etc. Each value may be globbing, that is, you can write {@code git.commit.user.*}
to exclude both, the {@code name}, as well as {@code email} properties from
being emitted into the resulting files. Please note that the strings here
are Java regexes ({@code .*} is globbing, not plain {@code *}). -->
<excludeProperties>
<excludeProperty>.*user.name</excludeProperty>
</excludeProperties>
<!-- @since 2.1.14 -->
<!-- Can be used to include only certain properties into the resulting
file. Will be overruled by the exclude properties. Each value may be globbing,
that is, you can write {@code git.commit.user.*} to include both, the {@code
name}, as well as {@code email} properties into the resulting files. Please
note that the strings here are Java regexes ({@code .*} is globbing, not
plain {@code *}). -->
<includeOnlyProperties>
<!-- <includeOnlyProperty>^git.commit.id.full$</includeOnlyProperty> -->
</includeOnlyProperties>
<!-- @since 2.1.10 -->
<!-- false is default here, if set to true it uses native `git`
executable for extracting all data. This usually has better performance than
the default (jgit) implementation, but requires you to have git available
as executable for the build as well as *might break unexpectedly* when you
upgrade your system-wide git installation. As rule of thumb - stay on `jgit`
(keep this `false`) until you notice performance problems. -->
<useNativeGit>false</useNativeGit>
<!-- @since v2.0.4 -->
<!-- Controls the length of the abbreviated git commit it (git.commit.id.abbrev)
Defaults to `7`. `0` carries the special meaning. Maximum value is `40`,
because of max SHA-1 length. -->
<abbrevLength>7</abbrevLength>
<!-- @since v2.2.0 -->
<!-- The option can be used to tell the plugin how it should generate
the 'git.commit.id' property. Due to some naming issues when exporting the
properties as an json-object (https://github.com/ktoso/maven-git-commit-id-plugin/issues/122)
we needed to make it possible to export all properties as a valid json-object.
Due to the fact that this is one of the major properties the plugin is exporting
we just don't want to change the exporting mechanism and somehow throw the
backwards compatibility away. We rather provide a convenient switch where
you can choose if you would like the properties as they always had been,
or if you rather need to support full json-object compatibility. In the case
you need to fully support json-object we unfortunately need to change the
'git.commit.id' property from 'git.commit.id' to 'git.commit.id.full' in
the exporting mechanism to allow the generation of a fully valid json object.
Currently the switch allows two different options: 1. By default this property
is set to 'flat' and will generate the formerly known property 'git.commit.id'
as it was in the previous versions of the plugin. Keeping it to 'flat' by
default preserve backwards compatibility and does not require further adjustments
by the end user. 2. If you set this switch to 'full' the plugin will export
the formerly known property 'git.commit.id' as 'git.commit.id.full' and therefore
will generate a fully valid json object in the exporting mechanism. *Note*:
Depending on your plugin configuration you obviously can choose the 'prefix'
of your properties by setting it accordingly in the plugin's configuration.
As a result this is therefore only an illustration what the switch means
when the 'prefix' is set to it's default value. *Note*: If you set the value
to something that's not equal to 'flat' or 'full' (ignoring the case) the
plugin will output a warning and will fallback to the default 'flat' mode. -->
<commitIdGenerationMode>flat</commitIdGenerationMode>
<!-- @since 2.1.0 -->
<!-- read up about git-describe on the in man, or it's homepage
- it's a really powerful versioning helper and the recommended way to use
git-commit-id-plugin. The configuration bellow is optional, by default describe
will run "just like git-describe on the command line", even though it's a
JGit reimplementation. -->
<gitDescribe>
<!-- don't generate the describe property -->
<skip>false</skip>
<!-- if no tag was found "near" this commit, just print the commit's
id instead, helpful when you always expect this field to be not-empty -->
<always>false</always>
<!-- how many chars should be displayed as the commit object
id? 7 is git's default, 0 has a special meaning (see end of this README.md),
and 40 is the maximum value here -->
<abbrev>7</abbrev>
<!-- when the build is triggered while the repo is in "dirty
state", append this suffix -->
<dirty>-dirty</dirty>
<!-- Only consider tags matching the given pattern. This can
be used to avoid leaking private tags from the repository. -->
<match>*</match>
<!-- always print using the "tag-commits_from_tag-g_commit_id-maybe_dirty"
format, even if "on" a tag. The distance will always be 0 if you're "on"
the tag. -->
<forceLongFormat>false</forceLongFormat>
</gitDescribe>
</configuration>
</plugin>
</plugins>
</build>
</project>