This is an automated email from the ASF dual-hosted git repository.
kwin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-doxia-site.git
The following commit(s) were added to refs/heads/master by this push:
new e771a67 Inherit managed plugin versions from parent
e771a67 is described below
commit e771a6798c90bb35536f17aa444d699449375f51
Author: Konrad Windszus <[email protected]>
AuthorDate: Tue Mar 10 15:36:43 2026 +0100
Inherit managed plugin versions from parent
Remove unused m-pdf-p and unused properties
---
content/pdf.xml | 69 ---------------------------------------------------------
pom.xml | 44 ------------------------------------
2 files changed, 113 deletions(-)
diff --git a/content/pdf.xml b/content/pdf.xml
deleted file mode 100644
index 9c5544a..0000000
--- a/content/pdf.xml
+++ /dev/null
@@ -1,69 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- -->
-<document xmlns="http://maven.apache.org/DOCUMENT/1.0.1"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/DOCUMENT/1.0.1
../../../doxia/doxia-core/target/generated-site/xsd/document-1.0.1.xsd"
- outputName="doxia-${doxiaVersion}">
-
- <meta>
- <title>Apache Maven Doxia</title>
- <author>The Apache Maven Project</author>
- <keyWords>
- <keyWord>Content generation framework</keyWord>
- <keyWord>Lightweight markup language</keyWord>
- <keyWord>APT</keyWord>
- <keyWord>FML</keyWord>
- <keyWord>XDOC</keyWord>
- </keyWords>
- </meta>
-
- <toc name="Table of Contents">
- <item name="What is Doxia?" ref="index.html"/>
- <item name="Overview" ref="overview.html"/>
- <item name="FAQ" ref="faq.html"/>
- <item name="What's new in 1.1" ref="whatsnew-1.1.html"/>
- <item name="References" ref="references/index.html"/>
- <item name="Apt Format" ref="references/apt-format.html"/>
- <item name="Doxia Apt Enhancements" ref="references/doxia-apt.html"/>
- <item name="FML Format" ref="references/fml-format.html"/>
- <item name="Xdoc Format" ref="references/xdoc-format.html"/>
- <item name="Doxia Modules Guide" ref="modules/index.html"/>
- <item name="Doxia Macros Guide" ref="macros/index.html"/>
- <item name="Developer Centre" ref="developers/index.html"/>
- <item name="Create a Doxia Module" ref="developers/modules.html"/>
- <item name="Create a Doxia Macro" ref="developers/macros.html"/>
- <item name="Using the Sink API" ref="developers/sink.html"/>
- <item name="Integration With Maven"
ref="developers/maven-integration.html"/>
- <!-- MSITE-333: remove double-amp when fixed -->
- <item name="Issues &amp; Gotchas" ref="issues/index.html"/>
- <item name="External Resources" ref="resources.html"/>
- </toc>
-
- <cover>
- <coverTitle>Apache Maven Doxia</coverTitle>
- <coverSubTitle>v. ${doxiaVersion}</coverSubTitle>
- <coverType>User Guide</coverType>
- <companyName>The Apache Software Foundation</companyName>
- <projectLogo>./images/doxia-logo.png</projectLogo>
- </cover>
-</document>
diff --git a/pom.xml b/pom.xml
index 9073b3c..0fdbb00 100644
--- a/pom.xml
+++ b/pom.xml
@@ -145,11 +145,7 @@ under the License.
</distributionManagement>
<properties>
- <maven.site.path>doxia-site</maven.site.path>
- <version.maven-fluido-skin>2.0.1</version.maven-fluido-skin>
- <version.maven-site-plugin>3.21.0</version.maven-site-plugin>
<doxiaVersion>2.0.0</doxiaVersion>
- <site.output>${project.build.directory}/site</site.output>
</properties>
<repositories>
@@ -194,23 +190,6 @@ under the License.
</excludes>
</configuration>
</plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-antrun-plugin</artifactId>
- <version>3.2.0</version>
- <dependencies>
- <dependency>
- <groupId>org.apache.ant</groupId>
- <artifactId>ant</artifactId>
- <version>1.10.15</version>
- </dependency>
- </dependencies>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-pdf-plugin</artifactId>
- <version>1.5.1</version>
- </plugin>
<!-- publish mono-module site with "mvn site-deploy" -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
@@ -224,7 +203,6 @@ under the License.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-publish-plugin</artifactId>
- <version>3.3.0</version>
<configuration>
<tryUpdate>false</tryUpdate>
</configuration>
@@ -284,24 +262,6 @@ under the License.
</executions>
</plugin>
- <!--plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-pdf-plugin</artifactId>
- <executions>
- <execution>
- <id>pdf</id>
- <phase>site</phase>
- <goals>
- <goal>pdf</goal>
- </goals>
- <configuration>
-
<outputDirectory>${project.reporting.outputDirectory}</outputDirectory>
- <siteDirectory>${basedir}/content</siteDirectory>
- <docDescriptor>${basedir}/content/pdf.xml</docDescriptor>
- </configuration>
- </execution>
- </executions>
- </plugin-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
@@ -313,7 +273,6 @@ under the License.
</build>
<reporting>
- <outputDirectory>${site.output}</outputDirectory>
<excludeDefaults>true</excludeDefaults>
<plugins>
<plugin>
@@ -331,11 +290,9 @@ under the License.
<id>site-mpir</id>
<reports>
<report>index</report>
- <!-- apt/index.apt.vm -->
<report>team</report>
<report>mailing-lists</report>
<report>scm</report>
- <!-- xdoc/scm.xml -->
<report>issue-management</report>
<report>ci-management</report>
</reports>
@@ -348,7 +305,6 @@ under the License.
<profiles>
<profile>
<id>linkcheck</id>
- <!-- TODO: remove pdf from build, apparently linkcheck plugin is not
compatible -->
<reporting>
<plugins>
<plugin>