com.github.slem1.await.MojoConnectionConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of await-maven-plugin Show documentation
Show all versions of await-maven-plugin Show documentation
A plugin to pause maven build until some services become available.
package com.github.slem1.await;
/**
* General contract for MOJO parameter of connection config.
*
* @author slemoine
*/
public interface MojoConnectionConfig {
/**
* Build the underlying service implementation according to this configuration.
*
* @return the service.
*/
Service buildService();
/**
* Returns the element priority.
*
* The lower the value is the higher the priority is.
*
* @return the priority.
*/
int getPriority();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy