diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-01-06 12:49:48 +0700 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-01-06 10:09:11 +0100 |
commit | cbe376dab2172f70c0b3650297e416c8a89d04a8 (patch) | |
tree | 3c5ba9130753ac7d7ac78a9aa375914503da6dcd /aspectjrt | |
parent | 41b8bc56dae8e1cb021c9e52d687951ea4cd765e (diff) | |
download | aspectj-cbe376dab2172f70c0b3650297e416c8a89d04a8.tar.gz aspectj-cbe376dab2172f70c0b3650297e416c8a89d04a8.zip |
Add runtime and weaver API javadocs to installer again
Closes #271.
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'aspectjrt')
-rw-r--r-- | aspectjrt/pom.xml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/aspectjrt/pom.xml b/aspectjrt/pom.xml index 624f2a5df..2ef34a1f4 100644 --- a/aspectjrt/pom.xml +++ b/aspectjrt/pom.xml @@ -205,6 +205,34 @@ </executions> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-resources-plugin</artifactId> + <executions> + <execution> + <id>copy-javadoc-to-dist</id> + <phase>package</phase> + <goals> + <goal>copy-resources</goal> + </goals> + <configuration> + <!-- + Skip, if javadoc generation is also meant to be skipped, which is the default unless the 'release' + profile is active or the property is overridden manually to be false. See property definitions in parent + POM for default case and release profile. + --> + <skip>${maven.javadoc.skip}</skip> + <outputDirectory>${project.basedir}/../aj-build/dist/docs/doc/runtime-api</outputDirectory> + <resources> + <resource> + <directory>${project.build.directory}/apidocs</directory> + </resource> + </resources> + </configuration> + </execution> + </executions> + </plugin> + <!-- Caveat: Attaching the flattened POM needs packaging=jar, so do not use packaging=pom for this module --> <plugin> <groupId>org.codehaus.mojo</groupId> |