You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kw...@apache.org on 2022/11/09 10:58:10 UTC

[maven] branch feature/generate-plugin-descriptor-bean-and-reader-from-model updated (f3a5e9b2b -> 7229cd162)

This is an automated email from the ASF dual-hosted git repository.

kwin pushed a change to branch feature/generate-plugin-descriptor-bean-and-reader-from-model
in repository https://gitbox.apache.org/repos/asf/maven.git


    from f3a5e9b2b [MNG-7588] generate reader and some beans automatically for plugin descriptor
     add 7229cd162 generate immutable descriptor in new package

No new revisions were added by this update.

Summary of changes:
 maven-plugin-api/pom.xml                           |  31 +-
 .../{lifecycle => }/ImmutableCollections.java      |   6 +-
 .../InvalidPluginDescriptorException.java          |   7 +-
 .../maven/plugin/descriptor/MojoDescriptor.java    | 377 +--------------------
 .../apache/maven/plugin/descriptor/Parameter.java  | 207 +++++++++++
 .../maven/plugin/descriptor/PluginDescriptor.java  | 217 +-----------
 .../plugin/descriptor/PluginDescriptorBuilder.java | 147 +++++++-
 .../maven/plugin/descriptor/Requirement.java       |  55 ++-
 maven-plugin-api/src/main/mdo/model.vm             |   1 +
 .../plugin/descriptor/MojoDescriptorTest.java      |  49 ---
 .../descriptor/PluginDescriptorXpp3ReaderTest.java | 142 --------
 11 files changed, 388 insertions(+), 851 deletions(-)
 rename maven-plugin-api/src/main/java/org/apache/maven/plugin/{lifecycle => }/ImmutableCollections.java (99%)
 create mode 100644 maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/Parameter.java
 copy maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/ScopeArtifactFilter.java => maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/Requirement.java (53%)
 delete mode 100644 maven-plugin-api/src/test/java/org/apache/maven/plugin/descriptor/MojoDescriptorTest.java
 delete mode 100644 maven-plugin-api/src/test/java/org/apache/maven/plugin/descriptor/PluginDescriptorXpp3ReaderTest.java