-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpom.xml
430 lines (430 loc) · 19.8 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
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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>httpsnippet</artifactId>
<groupId>io.github.atkawa7</groupId>
<packaging>jar</packaging>
<name>Http Snippet</name>
<version>1.0.8</version>
<description>An HTTP Request snippet generator for openapi</description>
<url>https://github.com/atkawa7/httpsnippet</url>
<licenses>
<license>
<name>Apache License</name>
<url>https://raw.githubusercontent.com/atkawa7/httpsnippet/LICENSE.txt</url>
<distribution>https://github.com/atkawa7/httpsnippet</distribution>
</license>
</licenses>
<developers>
<developer>
<name>atkawa7</name>
<email>atkawa7@yahoo.com</email>
<organization>atkawa7</organization>
<organizationUrl>https://github.com/atkawa7</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/atkawa7/httpsnippet.git</connection>
<developerConnection>scm:git:git@github.com:atkawa7/httpsnippet.git</developerConnection>
<tag>httpsnippet-1.0.8</tag>
<url>https://github.com/atkawa7/httpsnippet</url>
</scm>
<distributionManagement>
<repository>
<id>ossrh</id>
<name>Central Repository OSSRH</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<properties>
<animal-sniffer-maven-plugin.version>1.18</animal-sniffer-maven-plugin.version>
<animal-sniffer-signature.version>1.0</animal-sniffer-signature.version>
<asciidoclet.version>1.5.6</asciidoclet.version>
<asciidoctor-maven-plugin.version>2.0.0-RC.1</asciidoctor-maven-plugin.version>
<asciidoctorj-diagram.version>2.0.2</asciidoctorj-diagram.version>
<asciidoctorj-epub3.version>1.5.0-alpha.9</asciidoctorj-epub3.version>
<asciidoctorj-pdf.version>1.5.3</asciidoctorj-pdf.version>
<build-number-maven-plugin.version>1.4</build-number-maven-plugin.version>
<checksum-maven-plugin.version>1.8</checksum-maven-plugin.version>
<clover-maven-plugin.version>4.3.1</clover-maven-plugin.version>
<cobertura-maven-plugin.version>2.7</cobertura-maven-plugin.version>
<codecov.token>${env.CODECOV_TOKEN}</codecov.token>
<commons-io.version>2.14.0</commons-io.version>
<commons-lang3.version>3.9</commons-lang3.version>
<commons-text.version>1.10.0</commons-text.version>
<copy-rename-maven-plugin.version>1.0.1</copy-rename-maven-plugin.version>
<coveralls-maven-plugin.version>4.3.0</coveralls-maven-plugin.version>
<coveralls.token>${env.COVERALLS_REPO_TOKEN}</coveralls.token>
<dependency-check-maven.version>5.3.2</dependency-check-maven.version>
<dockerfile-maven-plugin.version>1.4.10</dockerfile-maven-plugin.version>
<error_prone_core.version>2.3.3</error_prone_core.version>
<exec-maven-plugin.version>1.6.0</exec-maven-plugin.version>
<findsecbugs-plugin.version>1.9.0</findsecbugs-plugin.version>
<forbidden-apis.version>2.6</forbidden-apis.version>
<frontend-maven-plugin.nodeVersion>v11.10.1</frontend-maven-plugin.nodeVersion>
<frontend-maven-plugin.version>1.7.6</frontend-maven-plugin.version>
<frontend-maven-plugin.yarnVersion>v1.13.0</frontend-maven-plugin.yarnVersion>
<git-commit-id-plugin.version>3.0.0</git-commit-id-plugin.version>
<github-release-plugin.version>1.3.0</github-release-plugin.version>
<github.draft>true</github.draft>
<github.repository>httpsnippet</github.repository>
<github.username>atkawa7</github.username>
<google.format.version>1.7</google.format.version>
<h2.version>1.4.199</h2.version>
<har-java.version>1.1.4</har-java.version>
<jackson.version>2.13.4.2</jackson.version>
<jacoco-maven-plugin.version>0.8.3</jacoco-maven-plugin.version>
<java.faker.version>0.18</java.faker.version>
<jruby-complete.version>9.2.7.0</jruby-complete.version>
<junit-jupiter.version>5.4.2</junit-jupiter.version>
<junit-platform.version>1.4.2</junit-platform.version>
<lombok.version>1.18.12</lombok.version>
<maven-assembly-plugin.version>3.1.1</maven-assembly-plugin.version>
<maven-changelog-plugin.version>2.3</maven-changelog-plugin.version>
<maven-checkstyle-plugin.version>3.1.1</maven-checkstyle-plugin.version>
<maven-clean-plugin.version>3.1.0</maven-clean-plugin.version>
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
<maven-deploy-plugin.version>3.0.0-M1</maven-deploy-plugin.version>
<maven-enforcer-plugin.version>3.0.0-M2</maven-enforcer-plugin.version>
<maven-failsafe-plugin.version>3.0.0-M3</maven-failsafe-plugin.version>
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
<maven-install-plugin.version>3.0.0-M1</maven-install-plugin.version>
<maven-jar-plugin.version>3.1.2</maven-jar-plugin.version>
<maven-jar-signer-plugin.version>3.0.0</maven-jar-signer-plugin.version>
<maven-jarsigner-plugin.version>3.0.0</maven-jarsigner-plugin.version>
<maven-javadoc-plugin.version>3.1.0</maven-javadoc-plugin.version>
<maven-jxr-plugin.version>3.0.0</maven-jxr-plugin.version>
<maven-pmd-plugin.version>3.12.0</maven-pmd-plugin.version>
<maven-project-info-reports-plugin.version>3.0.0</maven-project-info-reports-plugin.version>
<maven-release-plugin.version>2.5.3</maven-release-plugin.version>
<maven-resources-plugin.version>3.1.0</maven-resources-plugin.version>
<maven-shade-plugin.version>3.2.1</maven-shade-plugin.version>
<maven-site-plugin.version>3.7.1</maven-site-plugin.version>
<maven-source-plugin.version>3.1.0</maven-source-plugin.version>
<maven-surefire-plugin.version>3.0.0-M3</maven-surefire-plugin.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version>
<ossindex-maven-plugin.version>3.0.4</ossindex-maven-plugin.version>
<pmd-core.version>6.15.0</pmd-core.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<reflections.version>0.9.11</reflections.version>
<slf4j.version>1.7.26</slf4j.version>
<sonar-maven-plugin.version>3.6.0.1398</sonar-maven-plugin.version>
<sortpom-maven-plugin.version>2.10.0</sortpom-maven-plugin.version>
<spotbugs-fb-contrib.version>7.4.3.sb</spotbugs-fb-contrib.version>
<spotbugs-maven-plugin.version>3.1.12</spotbugs-maven-plugin.version>
<spotless-maven-plugin.version>1.23.0</spotless-maven-plugin.version>
<spring.boot.version>2.3.1.RELEASE</spring.boot.version>
<springfox.version>3.0.0-SNAPSHOT</springfox.version>
<versions-maven-plugin.version>2.7</versions-maven-plugin.version>
<xml-format-maven-plugin.version>3.0.7</xml-format-maven-plugin.version>
</properties>
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-annotations</artifactId>
<version>${spotbugs-maven-plugin.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.github.atkawa7</groupId>
<artifactId>har</artifactId>
<version>${har-java.version}</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons-io.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons-lang3.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<version>${commons-text.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit-jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit-jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${junit-jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-commons</artifactId>
<version>${junit-platform.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<version>${junit-platform.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven-source-plugin.version}</version>
<executions>
<execution>
<id>attach-sources</id>
<goals><goal>jar-no-fork</goal></goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>${maven-deploy-plugin.version}</version>
<executions>
<execution>
<id>deploy</id>
<goals><goal>deploy</goal></goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals><goal>jar</goal></goals>
</execution>
</executions>
<configuration>
<source>8</source>
<detectJavaApiLink>false</detectJavaApiLink>
<additionalJOption>-Xdoclint:none</additionalJOption>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</plugin>
<plugin>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
<version>${asciidoctor-maven-plugin.version}</version>
<executions>
<execution>
<id>output-html</id>
<phase>site</phase>
<goals>
<goal>process-asciidoc</goal>
</goals>
<configuration>
<backend>html5</backend>
<sourceHighlighter>highlight.js</sourceHighlighter>
<doctype>book</doctype>
<attributes>
<toclevels>10</toclevels>
<icons>font</icons>
<highlightjsdir>highlight</highlightjsdir>
<highlightjs-theme>atom-one-dark-reasonable</highlightjs-theme>
</attributes>
</configuration>
</execution>
<execution>
<id>asciidoc-to-docbook</id>
<phase>site</phase>
<goals>
<goal>process-asciidoc</goal>
</goals>
<configuration>
<backend>docbook</backend>
<doctype>book</doctype>
<attributes>
<imagesdir>images</imagesdir>
</attributes>
</configuration>
</execution>
<execution>
<id>output-pdf</id>
<phase>site</phase>
<goals>
<goal>process-asciidoc</goal>
</goals>
<configuration>
<backend>pdf</backend>
</configuration>
</execution>
</executions>
<configuration>
<sourceDirectory>${maven.multiModuleProjectDirectory}/docs</sourceDirectory>
<outputDirectory>${project.build.directory}/generated-docs</outputDirectory>
<sourceDocumentName>index.adoc</sourceDocumentName>
<requires>
<require>asciidoctor-diagram</require>
</requires>
<attributes>
<doctype>book</doctype>
<toc>left</toc>
<toclevels>10</toclevels>
<numbered />
<hardbreaks />
<sectlinks />
<sectanchors />
<generated>${project.build.directory}/generated-docs</generated>
</attributes>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>${cobertura-maven-plugin.version}</version>
<dependencies>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>7.1</version>
</dependency>
</dependencies>
<configuration>
<formats>
<format>html</format>
<format>xml</format>
</formats>
<check />
</configuration>
</plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>${coveralls-maven-plugin.version}</version>
<configuration>
<repoToken>${coveralls.token}</repoToken>
<sourceDirectories>
<sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
</sourceDirectories>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco-maven-plugin.version}</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>${spotbugs-maven-plugin.version}</version>
<configuration>
<xmlOutput>true</xmlOutput>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>${maven-jxr-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>${maven-pmd-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>${maven-project-info-reports-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco-maven-plugin.version}</version>
</plugin>
</plugins>
</reporting>
</project>