blob: fbdac788dd194f3f2b30360e23e1612d11b502cb [file] [log] [blame]
Stuart McCullochbb014372012-06-07 21:57:32 +00001package aQute.bnd.service;
2
Stuart McCulloch55d4dfe2012-08-07 10:57:21 +00003import java.io.InputStream;
4
Stuart McCullochbb014372012-06-07 21:57:32 +00005import aQute.bnd.build.*;
Stuart McCullochbb014372012-06-07 21:57:32 +00006
7/**
8 * Deploy this artifact to maven.
Stuart McCullochbb014372012-06-07 21:57:32 +00009 */
Stuart McCulloch2286f232012-06-15 13:27:53 +000010public interface Deploy {
Stuart McCulloch55d4dfe2012-08-07 10:57:21 +000011 boolean deploy(Project project, String jarName, InputStream jarStream) throws Exception;
Stuart McCullochbb014372012-06-07 21:57:32 +000012}