View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.maven.plugin.plugin;
20  
21  import java.util.Collections;
22  import java.util.List;
23  
24  import org.apache.maven.plugin.AbstractMojo;
25  import org.apache.maven.plugin.MojoExecutionException;
26  import org.apache.maven.plugins.annotations.Parameter;
27  import org.apache.maven.project.MavenProject;
28  
29  /**
30   * Abstract class for this Plugin.
31   *
32   * @author <a href="mailto:jason@maven.org">Jason van Zyl</a>
33   *
34   */
35  public abstract class AbstractGeneratorMojo extends AbstractMojo {
36  
37      /**
38       * The goal prefix that will appear before the ":".
39       */
40      @Parameter
41      protected String goalPrefix;
42  
43      /**
44       * Set this to "true" to skip invoking any goals or reports of the plugin.
45       *
46       * @since 2.8
47       */
48      @Parameter(defaultValue = "false", property = "maven.plugin.skip")
49      private boolean skip;
50  
51      /**
52       * Maven plugin packaging types. Default is single "maven-plugin".
53       *
54       * @since 3.3
55       */
56      @Parameter
57      private List<String> packagingTypes = Collections.singletonList("maven-plugin");
58  
59      /**
60       * System/OS line separator: used to format console messages.
61       */
62      protected static final String LS = System.lineSeparator();
63  
64      /**
65       * The project currently being built.
66       */
67      protected final MavenProject project;
68  
69      protected AbstractGeneratorMojo(MavenProject project) {
70          this.project = project;
71      }
72  
73      protected abstract void generate() throws MojoExecutionException;
74  
75      @Override
76      public void execute() throws MojoExecutionException {
77          if (!packagingTypes.contains(project.getPackaging())) {
78              getLog().info("Unsupported packaging type " + project.getPackaging() + ", execution skipped");
79              return;
80          }
81  
82          if (skip) {
83              getLog().warn("Execution skipped");
84              return;
85          }
86  
87          if (goalPrefix == null || goalPrefix.isEmpty()) {
88              goalPrefix = getDefaultGoalPrefix(project);
89          }
90          if (goalPrefix == null || goalPrefix.isEmpty()) {
91              throw new MojoExecutionException("You need to specify a goalPrefix as it can not be correctly computed");
92          }
93  
94          generate();
95      }
96  
97      static String getDefaultGoalPrefix(MavenProject project) {
98          String artifactId = project.getArtifactId();
99          if (artifactId.endsWith("-maven-plugin")) {
100             return artifactId.substring(0, artifactId.length() - "-maven-plugin".length());
101         } else if (artifactId.startsWith("maven-") && artifactId.endsWith("-plugin")) {
102             return artifactId.substring("maven-".length(), artifactId.length() - "-plugin".length());
103         } else {
104             return null;
105         }
106     }
107 }