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