| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| MavenSdmDeployMojo |
|
| 1.0;1 |
| 1 | package com.aurea.maven.plugins.sonic.sdm; | |
| 2 | ||
| 3 | import org.apache.maven.plugin.MojoExecutionException; | |
| 4 | import org.apache.maven.plugin.MojoFailureException; | |
| 5 | ||
| 6 | /** | |
| 7 | * Goal that stores a single jar file into the SonicDS. | |
| 8 | * | |
| 9 | * @goal sdm-deploy | |
| 10 | * @phase process-sources | |
| 11 | */ | |
| 12 | 0 | public class MavenSdmDeployMojo extends AbstractSdmMojo { |
| 13 | ||
| 14 | ||
| 15 | /** | |
| 16 | * {@inheritDoc} | |
| 17 | */ | |
| 18 | public void doExecute() throws MojoExecutionException, MojoFailureException { | |
| 19 | ||
| 20 | // try to resolve SDM artifact from repository | |
| 21 | ||
| 22 | // try to resolve Sonic Installer Artifact from Repository | |
| 23 | 0 | getLog().info("Deploying SDM Model ..."); |
| 24 | 0 | } |
| 25 | } |