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.scm.plugin;
20  
21  import java.io.IOException;
22  
23  import org.apache.maven.plugin.MojoExecutionException;
24  import org.apache.maven.plugins.annotations.Mojo;
25  import org.apache.maven.plugins.annotations.Parameter;
26  import org.apache.maven.scm.CommandParameter;
27  import org.apache.maven.scm.CommandParameters;
28  import org.apache.maven.scm.ScmException;
29  import org.apache.maven.scm.command.untag.UntagScmResult;
30  import org.apache.maven.scm.provider.ScmProvider;
31  import org.apache.maven.scm.repository.ScmRepository;
32  
33  /**
34   * Untag the project.
35   */
36  @Mojo(name = "untag", aggregator = true)
37  public class UntagMojo extends AbstractScmMojo {
38      /**
39       * The tag name.
40       */
41      @Parameter(property = "tag", required = true)
42      private String tag;
43  
44      /**
45       * The commit message.
46       */
47      @Parameter(property = "message", required = false)
48      private String message;
49  
50      /** {@inheritDoc} */
51      public void execute() throws MojoExecutionException {
52          super.execute();
53  
54          try {
55              ScmRepository repository = getScmRepository();
56              ScmProvider provider = getScmManager().getProviderByRepository(repository);
57  
58              String finalTag = provider.sanitizeTagName(tag);
59              getLog().info("Final Tag Name: '" + finalTag + "'");
60  
61              CommandParameters parameters = new CommandParameters();
62              parameters.setString(CommandParameter.TAG_NAME, finalTag);
63              parameters.setString(CommandParameter.MESSAGE, message);
64  
65              UntagScmResult result = provider.untag(repository, getFileSet(), parameters);
66  
67              checkResult(result);
68          } catch (IOException | ScmException e) {
69              throw new MojoExecutionException("Cannot run untag command", e);
70          }
71      }
72  }