blob: a57fa5f6487775a8033092b89dc81ffa8c01ac4d [file] [log] [blame]
package aQute.bnd.service;
import java.io.*;
import java.util.*;
import aQute.bnd.build.*;
public interface Compiler {
boolean compile(Project project, Collection<File> sources, Collection<Container> buildpath, File bin)
throws Exception;
}