This is an automated email from the ASF dual-hosted git repository. veithen pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/ws-axiom.git
The following commit(s) were added to refs/heads/master by this push: new 3c1ff6f35 Use the org.apache:apache parent POM directly 3c1ff6f35 is described below commit 3c1ff6f35904f4396f91c7c1e15c16c0b8761e9e Author: Andreas Veithen <andreas.veit...@gmail.com> AuthorDate: Tue Sep 17 14:44:19 2024 +0100 Use the org.apache:apache parent POM directly The ws-parent POM was meant to increase visual consistency between Maven sites for different WS subprojects, but that never really took off. Stop using it. --- pom.xml | 44 +++++++++++++++++++++++++++++++++++++++++--- src/site/site.xml | 21 +++++++++++++++++++++ 2 files changed, 62 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index ba36a30cc..60ded848d 100644 --- a/pom.xml +++ b/pom.xml @@ -21,9 +21,9 @@ <modelVersion>4.0.0</modelVersion> <parent> - <groupId>org.apache.ws</groupId> - <artifactId>ws-parent</artifactId> - <version>3</version> + <groupId>org.apache</groupId> + <artifactId>apache</artifactId> + <version>20</version> </parent> <groupId>org.apache.ws.commons.axiom</groupId> @@ -212,6 +212,29 @@ </contributor> </contributors> + <mailingLists> + <mailingList> + <name>Users</name> + <subscribe>users-subscr...@ws.apache.org</subscribe> + <unsubscribe>users-unsubscr...@ws.apache.org</unsubscribe> + <post>us...@ws.apache.org</post> + <archive>http://mail-archives.apache.org/mod_mbox/ws-users/</archive> + </mailingList> + <mailingList> + <name>Developers</name> + <subscribe>dev-subscr...@ws.apache.org</subscribe> + <unsubscribe>dev-unsubscr...@ws.apache.org</unsubscribe> + <post>d...@ws.apache.org</post> + <archive>http://mail-archives.apache.org/mod_mbox/ws-dev/</archive> + </mailingList> + <mailingList> + <name>Commits</name> + <subscribe>commits-subscr...@ws.apache.org</subscribe> + <unsubscribe>commits-unsubscr...@ws.apache.org</unsubscribe> + <archive>http://mail-archives.apache.org/mod_mbox/ws-commits/</archive> + </mailingList> + </mailingLists> + <modules> <module>buildutils</module> <module>axiom-api</module> @@ -753,6 +776,17 @@ <configuration> <detectOfflineLinks>false</detectOfflineLinks> <source>${javaVersion}</source> + <breakiterator>true</breakiterator> + <!-- The notimestamp, windowtitle and bottom parameters are chosen to minimize the number + of changes between releases (to avoid mass changes when committing the site for a new release) --> + <notimestamp>true</notimestamp> + <windowtitle>${project.name} API</windowtitle> + <!-- Use entity references here to avoid charset encoding issues (the string is passed as + a command line argument to the javadoc util and it's tricky to get charset encoding + right in this case). --> + <bottom><![CDATA[Copyright © {organizationName}. All Rights Reserved.]]></bottom> + <!-- doctitle only appears in the summary and we should include the version there --> + <doctitle>${project.name} ${project.version} API</doctitle> </configuration> </plugin> <plugin> @@ -1151,6 +1185,9 @@ </configuration> </execution> </executions> + <configuration> + <skipDeploy>true</skipDeploy> + </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> @@ -1170,6 +1207,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-scm-publish-plugin</artifactId> + <version>3.1.0</version> <inherited>false</inherited> <configuration> <ignorePathsToDelete> diff --git a/src/site/site.xml b/src/site/site.xml index 6d66b6059..c743f0dfc 100644 --- a/src/site/site.xml +++ b/src/site/site.xml @@ -18,10 +18,25 @@ ~ under the License. --> <site xmlns="http://maven.apache.org/SITE/2.0.0" name="Axiom" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SITE/2.0.0 https://maven.apache.org/xsd/site-2.0.0.xsd"> + <skin> + <groupId>org.apache.maven.skins</groupId> + <artifactId>maven-fluido-skin</artifactId> + <version>1.7</version> + </skin> <bannerLeft name="Apache Axiom" href="http://ws.apache.org/axiom/index.html"> <image src="images/logo.png"/> </bannerLeft> + <bannerRight href="http://ws.apache.org/"> + <image src="http://ws.apache.org/images/project-logo.jpg"/> + </bannerRight> + <publishDate format="yyyy-MM-dd" position="right" /> + <version position="right" /> <body> + <breadcrumbs> + <item name="Apache" href="http://www.apache.org/"/> + <item name="Web Services" href="http://ws.apache.org/"/> + <item name="Axiom" href="http://ws.apache.org/axiom/index.html"/> + </breadcrumbs> <menu name="About"> <item name="Introduction" href="index.html"/> <item name="Mailing Lists" href="/mail-lists.html"/> @@ -72,5 +87,11 @@ <item name="Compatibility classes" href="axiom-compat/index.html"/> <item name="Google Truth extension for XML" href="testing/xml-truth/index.html"/> </menu> + <menu name="Apache" inherit="bottom"> + <item name="License" href="http://www.apache.org/licenses/LICENSE-2.0.html" /> + <item name="Sponsorship" href="http://www.apache.org/foundation/sponsorship.html"/> + <item name="Thanks" href="http://www.apache.org/foundation/thanks.html"/> + <item name="Security" href="http://www.apache.org/security/"/> + </menu> </body> </site>