File tree 4 files changed +40
-16
lines changed
4 files changed +40
-16
lines changed Original file line number Diff line number Diff line change @@ -9,4 +9,5 @@ pom.xml.versionsBackup
9
9
pom.xml.next
10
10
release.properties
11
11
.idea /
12
- * .iml
12
+ * .iml
13
+ . /src /site /markdown /README.md
Original file line number Diff line number Diff line change @@ -272,7 +272,7 @@ under the License.
272
272
<detectJavaApiLink >false</detectJavaApiLink >
273
273
<subpackages >org.scoverage.plugin</subpackages >
274
274
<links >
275
- <link >https://docs.oracle.com/javase/11/docs/api/</link >
275
+ <link >https://docs.oracle.com/en/java/ javase/11/docs/api/</link >
276
276
<link >https://maven.apache.org/ref/${maven.version} /apidocs/</link >
277
277
<link >https://maven.apache.org/shared-archives/maven-reporting-api-${maven-reporting-api.version} /apidocs/</link >
278
278
<link >https://maven.apache.org/doxia/components/doxia-archives/doxia-${doxia.version} /apidocs/</link >
@@ -364,7 +364,7 @@ under the License.
364
364
<plugin >
365
365
<groupId >org.apache.maven.plugins</groupId >
366
366
<artifactId >maven-site-plugin</artifactId >
367
- <version >3.12.1 </version >
367
+ <version >3.20.0 </version >
368
368
</plugin >
369
369
370
370
<plugin >
@@ -507,6 +507,33 @@ under the License.
507
507
</execution >
508
508
</executions >
509
509
</plugin >
510
+
511
+ <plugin >
512
+ <groupId >org.apache.maven.plugins</groupId >
513
+ <artifactId >maven-resources-plugin</artifactId >
514
+ <executions >
515
+ <execution >
516
+ <!-- Copy the readme file to the site source files so that a page is generated from it. -->
517
+ <id >copy-readme</id >
518
+ <phase >pre-site</phase >
519
+ <goals >
520
+ <goal >copy-resources</goal >
521
+ </goals >
522
+ <configuration >
523
+ <outputDirectory >${basedir} /src/site/markdown</outputDirectory >
524
+ <resources >
525
+ <resource >
526
+ <directory >${basedir} </directory >
527
+ <includes >
528
+ <include >README.md</include >
529
+ </includes >
530
+ </resource >
531
+ </resources >
532
+ </configuration >
533
+ </execution >
534
+ </executions >
535
+ </plugin >
536
+
510
537
</plugins >
511
538
</build >
512
539
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- <?xml version =" 1.0" encoding =" UTF-8" ?>
2
-
3
1
<!--
4
2
Copyright 2014-2024 Grzegorz Slowikowski (gslowikowski at gmail dot com)
5
3
@@ -17,17 +15,20 @@ specific language governing permissions and limitations
17
15
under the License.
18
16
-->
19
17
20
- <project xmlns =" http://maven.apache.org/DECORATION/1.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : schemaLocation =" http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd" >
18
+ <site xmlns =" http://maven.apache.org/SITE/2.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
19
+ xsi : schemaLocation =" http://maven.apache.org/SITE/2.0.0 https://maven.apache.org/xsd/site-2.0.0.xsd"
20
+ name =" SCoverage Maven Plugin" >
21
21
22
22
<skin >
23
23
<groupId >org.apache.maven.skins</groupId >
24
24
<artifactId >maven-fluido-skin</artifactId >
25
- <version >1.5 </version >
25
+ <version >2.0.0-M10 </version >
26
26
</skin >
27
27
28
+ <bannerLeft name =" SCoverage Maven Plugin" />
29
+
28
30
<bannerRight >
29
- <name >avatar</name >
30
- <src >images/my-avatar-80.png</src >
31
+ <image src =" images/my-avatar-80.png" />
31
32
</bannerRight >
32
33
33
34
<custom >
@@ -46,14 +47,12 @@ under the License.
46
47
</head >
47
48
48
49
<menu name =" Overview" >
49
- <item name =" Introduction" href =" index .html" />
50
+ <item name =" Introduction" href =" README .html" />
50
51
<item name =" Goals" href =" plugin-info.html" />
51
52
<item name =" JavaDocs" href =" apidocs/index.html" />
52
53
</menu >
53
54
54
55
<menu ref =" reports" />
55
56
</body >
56
57
57
- <googleAnalyticsAccountId >${googleAnalyticsAccountId}</googleAnalyticsAccountId >
58
-
59
- </project >
58
+ </site >
You can’t perform that action at this time.
0 commit comments