maven-tools 0.33.4 → 0.33.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,647 @@
1
+ project do
2
+
3
+ model_version '1.0.0'
4
+
5
+ parent 'example:parent:1.1' do
6
+ relative_path '../pom.xml'
7
+ end
8
+
9
+ id 'example:project:1.1'
10
+
11
+ packaging 'jar'
12
+
13
+ name 'my name'
14
+
15
+ url 'example.com'
16
+
17
+ description 'some description'
18
+
19
+ inception_year 2020
20
+
21
+ organization do
22
+ name 'ngo'
23
+ url 'ngo.org'
24
+ end
25
+
26
+ license do
27
+ name 'AGPL'
28
+ url 'gnu.org/agpl'
29
+ distribution 'online'
30
+ comments 'should be used more often'
31
+ end
32
+
33
+ developer do
34
+ id '1'
35
+ name 'first'
36
+ email 'first@example.com'
37
+ url 'example.com/first'
38
+ organization 'orga'
39
+ organization_url 'example.org'
40
+ roles 'developer', 'architect'
41
+ timezone 'IST'
42
+ properties :gender => :male
43
+ end
44
+
45
+ contributor do
46
+ name 'first'
47
+ email 'first@example.com'
48
+ url 'example.com/first'
49
+ organization 'orga'
50
+ organization_url 'example.org'
51
+ roles 'developer', 'architect'
52
+ timezone 'IST'
53
+ properties :gender => :male
54
+ end
55
+
56
+ mailing_list do
57
+ name 'development'
58
+ subscribe 'subcribe@example.com'
59
+ unsubscribe 'unsubcribe@example.com'
60
+ post 'post@example.com'
61
+ archive 'example.com/archive'
62
+ other_archives 'example.com/archive1', 'example.com/archive2'
63
+ end
64
+
65
+ prerequisites do
66
+ maven '3.0.5'
67
+ end
68
+
69
+ modules 'part1', 'part2'
70
+ end
71
+ # <scm>
72
+ # <connection/>
73
+ # <developerConnection/>
74
+ # <tag/>
75
+ # <url/>
76
+ # </scm>
77
+ # <issueManagement>
78
+ # <system/>
79
+ # <url/>
80
+ # </issueManagement>
81
+ # <ciManagement>
82
+ # <system/>
83
+ # <url/>
84
+ # <notifiers>
85
+ # <notifier>
86
+ # <type/>
87
+ # <sendOnError/>
88
+ # <sendOnFailure/>
89
+ # <sendOnSuccess/>
90
+ # <sendOnWarning/>
91
+ # <address/>
92
+ # <configuration>
93
+ # <key>value</key>
94
+ # </configuration>
95
+ # </notifier>
96
+ # </notifiers>
97
+ # </ciManagement>
98
+
99
+ # <distributionManagement>
100
+ # <repository>
101
+ # <uniqueVersion/>
102
+ # <releases>
103
+ # <enabled/>
104
+ # <updatePolicy/>
105
+ # <checksumPolicy/>
106
+ # </releases>
107
+ # <snapshots>
108
+ # <enabled/>
109
+ # <updatePolicy/>
110
+ # <checksumPolicy/>
111
+ # </snapshots>
112
+ # <id/>
113
+ # <name/>
114
+ # <url/>
115
+ # <layout/>
116
+ # </repository>
117
+ # <snapshotRepository>
118
+ # <uniqueVersion/>
119
+ # <releases>
120
+ # <enabled/>
121
+ # <updatePolicy/>
122
+ # <checksumPolicy/>
123
+ # </releases>
124
+ # <snapshots>
125
+ # <enabled/>
126
+ # <updatePolicy/>
127
+ # <checksumPolicy/>
128
+ # </snapshots>
129
+ # <id/>
130
+ # <name/>
131
+ # <url/>
132
+ # <layout/>
133
+ # </snapshotRepository>
134
+ # <site>
135
+ # <id/>
136
+ # <name/>
137
+ # <url/>
138
+ # </site>
139
+ # <downloadUrl/>
140
+ # <relocation>
141
+ # <groupId/>
142
+ # <artifactId/>
143
+ # <version/>
144
+ # <message/>
145
+ # </relocation>
146
+ # <status/>
147
+ # </distributionManagement>
148
+
149
+ # <properties>
150
+ # <key>value</key>
151
+ # </properties>
152
+
153
+ # <dependencyManagement>
154
+ # <dependencies>
155
+ # <dependency>
156
+ # <groupId/>
157
+ # <artifactId/>
158
+ # <version/>
159
+ # <type/>
160
+ # <classifier/>
161
+ # <scope/>
162
+ # <systemPath/>
163
+ # <exclusions>
164
+ # <exclusion>
165
+ # <artifactId/>
166
+ # <groupId/>
167
+ # </exclusion>
168
+ # </exclusions>
169
+ # <optional/>
170
+ # </dependency>
171
+ # </dependencies>
172
+ # </dependencyManagement>
173
+ # <dependencies>
174
+ # <dependency>
175
+ # <groupId/>
176
+ # <artifactId/>
177
+ # <version/>
178
+ # <type/>
179
+ # <classifier/>
180
+ # <scope/>
181
+ # <systemPath/>
182
+ # <exclusions>
183
+ # <exclusion>
184
+ # <artifactId/>
185
+ # <groupId/>
186
+ # </exclusion>
187
+ # </exclusions>
188
+ # <optional/>
189
+ # </dependency>
190
+ # </dependencies>
191
+
192
+ # <repositories>
193
+ # <repository>
194
+ # <releases>
195
+ # <enabled/>
196
+ # <updatePolicy/>
197
+ # <checksumPolicy/>
198
+ # </releases>
199
+ # <snapshots>
200
+ # <enabled/>
201
+ # <updatePolicy/>
202
+ # <checksumPolicy/>
203
+ # </snapshots>
204
+ # <id/>
205
+ # <name/>
206
+ # <url/>
207
+ # <layout/>
208
+ # </repository>
209
+ # </repositories>
210
+ # <pluginRepositories>
211
+ # <pluginRepository>
212
+ # <releases>
213
+ # <enabled/>
214
+ # <updatePolicy/>
215
+ # <checksumPolicy/>
216
+ # </releases>
217
+ # <snapshots>
218
+ # <enabled/>
219
+ # <updatePolicy/>
220
+ # <checksumPolicy/>
221
+ # </snapshots>
222
+ # <id/>
223
+ # <name/>
224
+ # <url/>
225
+ # <layout/>
226
+ # </pluginRepository>
227
+ # </pluginRepositories>
228
+
229
+ # <build>
230
+ # <sourceDirectory/>
231
+ # <scriptSourceDirectory/>
232
+ # <testSourceDirectory/>
233
+ # <outputDirectory/>
234
+ # <testOutputDirectory/>
235
+ # <extensions>
236
+ # <extension>
237
+ # <groupId/>
238
+ # <artifactId/>
239
+ # <version/>
240
+ # </extension>
241
+ # </extensions>
242
+ # <defaultGoal/>
243
+ # <resources>
244
+ # <resource>
245
+ # <targetPath/>
246
+ # <filtering/>
247
+ # <directory/>
248
+ # <includes/>
249
+ # <excludes/>
250
+ # </resource>
251
+ # </resources>
252
+ # <testResources>
253
+ # <testResource>
254
+ # <targetPath/>
255
+ # <filtering/>
256
+ # <directory/>
257
+ # <includes/>
258
+ # <excludes/>
259
+ # </testResource>
260
+ # </testResources>
261
+ # <directory/>
262
+ # <finalName/>
263
+ # <filters/>
264
+ # <pluginManagement>
265
+ # <plugins>
266
+ # <plugin>
267
+ # <groupId/>
268
+ # <artifactId/>
269
+ # <version/>
270
+ # <extensions/>
271
+ # <executions>
272
+ # <execution>
273
+ # <id/>
274
+ # <phase/>
275
+ # <goals/>
276
+ # <inherited/>
277
+ # <configuration/>
278
+ # </execution>
279
+ # </executions>
280
+ # <dependencies>
281
+ # <dependency>
282
+ # <groupId/>
283
+ # <artifactId/>
284
+ # <version/>
285
+ # <type/>
286
+ # <classifier/>
287
+ # <scope/>
288
+ # <systemPath/>
289
+ # <exclusions>
290
+ # <exclusion>
291
+ # <artifactId/>
292
+ # <groupId/>
293
+ # </exclusion>
294
+ # </exclusions>
295
+ # <optional/>
296
+ # </dependency>
297
+ # </dependencies>
298
+ # <goals/>
299
+ # <inherited/>
300
+ # <configuration/>
301
+ # </plugin>
302
+ # </plugins>
303
+ # </pluginManagement>
304
+ # <plugins>
305
+ # <plugin>
306
+ # <groupId/>
307
+ # <artifactId/>
308
+ # <version/>
309
+ # <extensions/>
310
+ # <executions>
311
+ # <execution>
312
+ # <id/>
313
+ # <phase/>
314
+ # <goals/>
315
+ # <inherited/>
316
+ # <configuration/>
317
+ # </execution>
318
+ # </executions>
319
+ # <dependencies>
320
+ # <dependency>
321
+ # <groupId/>
322
+ # <artifactId/>
323
+ # <version/>
324
+ # <type/>
325
+ # <classifier/>
326
+ # <scope/>
327
+ # <systemPath/>
328
+ # <exclusions>
329
+ # <exclusion>
330
+ # <artifactId/>
331
+ # <groupId/>
332
+ # </exclusion>
333
+ # </exclusions>
334
+ # <optional/>
335
+ # </dependency>
336
+ # </dependencies>
337
+ # <goals/>
338
+ # <inherited/>
339
+ # <configuration/>
340
+ # </plugin>
341
+ # </plugins>
342
+ # </build>
343
+
344
+ # <reports/>
345
+ # <reporting>
346
+ # <excludeDefaults/>
347
+ # <outputDirectory/>
348
+ # <plugins>
349
+ # <plugin>
350
+ # <groupId/>
351
+ # <artifactId/>
352
+ # <version/>
353
+ # <reportSets>
354
+ # <reportSet>
355
+ # <id/>
356
+ # <reports/>
357
+ # <inherited/>
358
+ # <configuration/>
359
+ # </reportSet>
360
+ # </reportSets>
361
+ # <inherited/>
362
+ # <configuration/>
363
+ # </plugin>
364
+ # </plugins>
365
+ # </reporting>
366
+
367
+ # <profiles>
368
+ # <profile>
369
+ # <id/>
370
+ # <activation>
371
+ # <activeByDefault/>
372
+ # <jdk/>
373
+ # <os>
374
+ # <name/>
375
+ # <family/>
376
+ # <arch/>
377
+ # <version/>
378
+ # </os>
379
+ # <property>
380
+ # <name/>
381
+ # <value/>
382
+ # </property>
383
+ # <file>
384
+ # <missing/>
385
+ # <exists/>
386
+ # </file>
387
+ # </activation>
388
+ # <build>
389
+ # <defaultGoal/>
390
+ # <resources>
391
+ # <resource>
392
+ # <targetPath/>
393
+ # <filtering/>
394
+ # <directory/>
395
+ # <includes/>
396
+ # <excludes/>
397
+ # </resource>
398
+ # </resources>
399
+ # <testResources>
400
+ # <testResource>
401
+ # <targetPath/>
402
+ # <filtering/>
403
+ # <directory/>
404
+ # <includes/>
405
+ # <excludes/>
406
+ # </testResource>
407
+ # </testResources>
408
+ # <directory/>
409
+ # <finalName/>
410
+ # <filters/>
411
+ # <pluginManagement>
412
+ # <plugins>
413
+ # <plugin>
414
+ # <groupId/>
415
+ # <artifactId/>
416
+ # <version/>
417
+ # <extensions/>
418
+ # <executions>
419
+ # <execution>
420
+ # <id/>
421
+ # <phase/>
422
+ # <goals/>
423
+ # <inherited/>
424
+ # <configuration/>
425
+ # </execution>
426
+ # </executions>
427
+ # <dependencies>
428
+ # <dependency>
429
+ # <groupId/>
430
+ # <artifactId/>
431
+ # <version/>
432
+ # <type/>
433
+ # <classifier/>
434
+ # <scope/>
435
+ # <systemPath/>
436
+ # <exclusions>
437
+ # <exclusion>
438
+ # <artifactId/>
439
+ # <groupId/>
440
+ # </exclusion>
441
+ # </exclusions>
442
+ # <optional/>
443
+ # </dependency>
444
+ # </dependencies>
445
+ # <goals/>
446
+ # <inherited/>
447
+ # <configuration/>
448
+ # </plugin>
449
+ # </plugins>
450
+ # </pluginManagement>
451
+ # <plugins>
452
+ # <plugin>
453
+ # <groupId/>
454
+ # <artifactId/>
455
+ # <version/>
456
+ # <extensions/>
457
+ # <executions>
458
+ # <execution>
459
+ # <id/>
460
+ # <phase/>
461
+ # <goals/>
462
+ # <inherited/>
463
+ # <configuration/>
464
+ # </execution>
465
+ # </executions>
466
+ # <dependencies>
467
+ # <dependency>
468
+ # <groupId/>
469
+ # <artifactId/>
470
+ # <version/>
471
+ # <type/>
472
+ # <classifier/>
473
+ # <scope/>
474
+ # <systemPath/>
475
+ # <exclusions>
476
+ # <exclusion>
477
+ # <artifactId/>
478
+ # <groupId/>
479
+ # </exclusion>
480
+ # </exclusions>
481
+ # <optional/>
482
+ # </dependency>
483
+ # </dependencies>
484
+ # <goals/>
485
+ # <inherited/>
486
+ # <configuration/>
487
+ # </plugin>
488
+ # </plugins>
489
+ # </build>
490
+
491
+ # <modules/>
492
+
493
+ # <distributionManagement>
494
+ # <repository>
495
+ # <uniqueVersion/>
496
+ # <releases>
497
+ # <enabled/>
498
+ # <updatePolicy/>
499
+ # <checksumPolicy/>
500
+ # </releases>
501
+ # <snapshots>
502
+ # <enabled/>
503
+ # <updatePolicy/>
504
+ # <checksumPolicy/>
505
+ # </snapshots>
506
+ # <id/>
507
+ # <name/>
508
+ # <url/>
509
+ # <layout/>
510
+ # </repository>
511
+ # <snapshotRepository>
512
+ # <uniqueVersion/>
513
+ # <releases>
514
+ # <enabled/>
515
+ # <updatePolicy/>
516
+ # <checksumPolicy/>
517
+ # </releases>
518
+ # <snapshots>
519
+ # <enabled/>
520
+ # <updatePolicy/>
521
+ # <checksumPolicy/>
522
+ # </snapshots>
523
+ # <id/>
524
+ # <name/>
525
+ # <url/>
526
+ # <layout/>
527
+ # </snapshotRepository>
528
+ # <site>
529
+ # <id/>
530
+ # <name/>
531
+ # <url/>
532
+ # </site>
533
+ # <downloadUrl/>
534
+ # <relocation>
535
+ # <groupId/>
536
+ # <artifactId/>
537
+ # <version/>
538
+ # <message/>
539
+ # </relocation>
540
+ # <status/>
541
+ # </distributionManagement>
542
+
543
+ # <properties>
544
+ # <key>value</key>
545
+ # </properties>
546
+
547
+ # <dependencyManagement>
548
+ # <dependencies>
549
+ # <dependency>
550
+ # <groupId/>
551
+ # <artifactId/>
552
+ # <version/>
553
+ # <type/>
554
+ # <classifier/>
555
+ # <scope/>
556
+ # <systemPath/>
557
+ # <exclusions>
558
+ # <exclusion>
559
+ # <artifactId/>
560
+ # <groupId/>
561
+ # </exclusion>
562
+ # </exclusions>
563
+ # <optional/>
564
+ # </dependency>
565
+ # </dependencies>
566
+ # </dependencyManagement>
567
+ # <dependencies>
568
+ # <dependency>
569
+ # <groupId/>
570
+ # <artifactId/>
571
+ # <version/>
572
+ # <type/>
573
+ # <classifier/>
574
+ # <scope/>
575
+ # <systemPath/>
576
+ # <exclusions>
577
+ # <exclusion>
578
+ # <artifactId/>
579
+ # <groupId/>
580
+ # </exclusion>
581
+ # </exclusions>
582
+ # <optional/>
583
+ # </dependency>
584
+ # </dependencies>
585
+
586
+ # <repositories>
587
+ # <repository>
588
+ # <releases>
589
+ # <enabled/>
590
+ # <updatePolicy/>
591
+ # <checksumPolicy/>
592
+ # </releases>
593
+ # <snapshots>
594
+ # <enabled/>
595
+ # <updatePolicy/>
596
+ # <checksumPolicy/>
597
+ # </snapshots>
598
+ # <id/>
599
+ # <name/>
600
+ # <url/>
601
+ # <layout/>
602
+ # </repository>
603
+ # </repositories>
604
+ # <pluginRepositories>
605
+ # <pluginRepository>
606
+ # <releases>
607
+ # <enabled/>
608
+ # <updatePolicy/>
609
+ # <checksumPolicy/>
610
+ # </releases>
611
+ # <snapshots>
612
+ # <enabled/>
613
+ # <updatePolicy/>
614
+ # <checksumPolicy/>
615
+ # </snapshots>
616
+ # <id/>
617
+ # <name/>
618
+ # <url/>
619
+ # <layout/>
620
+ # </pluginRepository>
621
+ # </pluginRepositories>
622
+
623
+ # <reports/>
624
+ # <reporting>
625
+ # <excludeDefaults/>
626
+ # <outputDirectory/>
627
+ # <plugins>
628
+ # <plugin>
629
+ # <groupId/>
630
+ # <artifactId/>
631
+ # <version/>
632
+ # <reportSets>
633
+ # <reportSet>
634
+ # <id/>
635
+ # <reports/>
636
+ # <inherited/>
637
+ # <configuration/>
638
+ # </reportSet>
639
+ # </reportSets>
640
+ # <inherited/>
641
+ # <configuration/>
642
+ # </plugin>
643
+ # </plugins>
644
+ # </reporting>
645
+ # </profile>
646
+ # </profiles>
647
+ # </project>