Skip to content

Commit

Permalink
Copy platform javadoc to correct folder
Browse files Browse the repository at this point in the history
  • Loading branch information
akurtakov committed Jan 14, 2024
1 parent aef4d71 commit 3028587
Showing 1 changed file with 17 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -452,8 +452,23 @@
</includes>
</resource>
</resources>
</configuration>
</configuration>
</execution>
<execution>
<id>copy-javadoc</id>
<phase>prepare-package</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/reference/api</outputDirectory>
<resources>
<resource>
<directory>${project.build.directory}/site/apidocs</directory>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
Expand All @@ -462,7 +477,7 @@
<executions>
<execution>
<id>attach-javadocs</id>
<phase>prepare-package</phase>
<phase>process-classes</phase>
<goals>
<goal>javadoc</goal>
</goals>
Expand Down

0 comments on commit 3028587

Please sign in to comment.