1 package com.atlassian.maven.plugins.amps;
2
3 import com.atlassian.maven.plugins.amps.product.ProductHandler;
4 import com.atlassian.maven.plugins.amps.product.ProductHandlerFactory;
5 import org.apache.maven.plugin.MojoExecutionException;
6
7 public abstract class AbstractProductHandlerAwareMojo extends AbstractProductAwareMojo
8 {
9
10
11
12
13
14
15 protected ProductHandler createProductHandler(String productId) throws MojoExecutionException
16 {
17 return ProductHandlerFactory.create(productId, getMavenContext(), getMavenGoals());
18 }
19 }