Skip to content

Commit 09cc3c2

Browse files
committed
(doc) misc plugin updates
1 parent 08d0ee1 commit 09cc3c2

File tree

3 files changed

+34
-4
lines changed

3 files changed

+34
-4
lines changed

pom.xml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,31 @@ under the License.
9393
</dependencies>
9494

9595
<build>
96+
<pluginManagement>
97+
<plugins>
98+
<!-- remove with next parent upgrade -->
99+
<plugin>
100+
<artifactId>maven-project-info-reports-plugin</artifactId>
101+
<version>3.1.1</version>
102+
</plugin>
103+
<plugin>
104+
<artifactId>maven-enforcer-plugin</artifactId>
105+
<version>3.0.0-M3</version>
106+
</plugin>
107+
<plugin>
108+
<artifactId>maven-javadoc-plugin</artifactId>
109+
<version>3.2.0</version>
110+
<configuration>
111+
<detectLinks>false</detectLinks>
112+
<additionalJOption>--no-module-directories</additionalJOption>
113+
</configuration>
114+
</plugin>
115+
<plugin>
116+
<artifactId>maven-site-plugin</artifactId>
117+
<version>3.9.1</version>
118+
</plugin>
119+
</plugins>
120+
</pluginManagement>
96121
<plugins>
97122
<plugin>
98123
<groupId>org.apache.maven.plugins</groupId>

src/site/apt/usage.apt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ public void publishSite( File siteDirectory ) throws PublishException
141141
<plugin>
142142
<groupId>org.apache.maven.plugins</groupId>
143143
<artifactId>maven-surefire-plugin</artifactId>
144-
<version>2.12.4</version> <!-- see surefire-page for available versions -->
144+
<version>2.22.2</version> <!-- see surefire-page for available versions -->
145145
<configuration>
146146
<systemPropertyVariables>
147147
<maven.home>${maven.home}</maven.home>

src/site/site.xml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,13 @@ specific language governing permissions and limitations
1919
under the License.
2020
-->
2121

22-
<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">
23-
22+
<project xmlns="http://maven.apache.org/DECORATION/1.8.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23+
xsi:schemaLocation="http://maven.apache.org/DECORATION/1.8.0 https://maven.apache.org/xsd/decoration-1.8.0.xsd">
24+
<skin>
25+
<groupId>org.apache.maven.skins</groupId>
26+
<artifactId>maven-fluido-skin</artifactId>
27+
<version>1.9</version>
28+
</skin>
2429
<body>
2530
<menu name="Overview">
2631
<item name="Introduction" href="index.html"/>
@@ -29,7 +34,7 @@ under the License.
2934
<item name="Source Xref" href="xref/index.html"/>
3035
<!--item name="FAQ" href="faq.html"/-->
3136
<!-- According to https://issues.apache.org/jira/browse/MNGSITE-152 -->
32-
<item name="License" href="http://www.apache.org/licenses/"/>
37+
<item name="License" href="https://www.apache.org/licenses/"/>
3338
<item name="Download" href="download.html"/>
3439
</menu>
3540
</body>

0 commit comments

Comments
 (0)