This is an automated email from the ASF dual-hosted git repository.
robertlazarski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/axis-axis2-java-rampart.git
The following commit(s) were added to refs/heads/master by this push:
new 1ded480c site-deploy is not finding our JavaDoc, so fix that with some
maven-resources-plugin config
1ded480c is described below
commit 1ded480c238d697e1cc09348ebd934f2dbe8f01b
Author: Robert Lazarski <[email protected]>
AuthorDate: Wed Nov 13 13:02:45 2024 -1000
site-deploy is not finding our JavaDoc, so fix that with some
maven-resources-plugin config
---
pom.xml | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/pom.xml b/pom.xml
index e26e9686..4b2e34c8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -399,6 +399,30 @@
<skipDeploy>true</skipDeploy>
</configuration>
</plugin>
+ <plugin>
+ <!-- site-deploy is not finding our JavaDoc, so fix that with
some maven-resources-plugin config -->
+ <artifactId>maven-resources-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>copy-resources</id>
+ <phase>package</phase>
+ <goals>
+ <goal>copy-resources</goal>
+ </goals>
+ <configuration>
+
<outputDirectory>${project.parent.basedir}/target/staging/apidocs</outputDirectory>
+ <resources>
+ <resource>
+
<directory>${project.parent.basedir}/apidocs/target/reports/apidocs</directory>
+ <includes>
+ <include>**/*.*</include>
+ </includes>
+ </resource>
+ </resources>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-publish-plugin</artifactId>