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