All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.kemitix.dependency.digraph.maven.plugin.AbstractMojoService Maven / Gradle / Ivy

There is a newer version: 0.9.1
Show newest version
package net.kemitix.dependency.digraph.maven.plugin;

import lombok.Getter;
import org.apache.maven.plugin.logging.Log;

import javax.inject.Inject;

/**
 * Abstract Mojo Service.
 *
 * 

* Services to be injected should extend this class, thus allowing them to be * given access to the Mojo. * * @author pcampbell */ abstract class AbstractMojoService implements MojoService { @Inject @Getter private DigraphMojo mojo; @Override public Log getLog() { return mojo.getLog(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy