Skip to content

Commit

Permalink
Fix TargetPlatformConfigurationMojo Javadoc
Browse files Browse the repository at this point in the history
The correct structure is not

  <target>
      <file>...</file>
      <locations>
          <location>...</location>
          <location>...</location>
      </locations>
      ...
  </target>

but

  <target>
      <file>...</file>
      <location>...</location>
      <location>...</location>
      ...
  <target>
  • Loading branch information
sratz committed Aug 22, 2024
1 parent 0349f68 commit 359c1b0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public class TargetPlatformConfigurationMojo extends AbstractMojo {
* <li><code>&lt;file></code> to define a file local to the build</li>
* <li><code>&lt;uri></code> to define a (remote) URI that specifies a target, currently only
* URIs that can be converted to URLs are supported (e.g. file:/.... http://..., )</li>
* <li>{@code <locations>} to define target locations inline</li>
* <li>{@code <location>} to define target location inline</li>
* </ul>
*/
@Parameter(name = DefaultTargetPlatformConfigurationReader.TARGET)
Expand Down

0 comments on commit 359c1b0

Please sign in to comment.