Stuart McCulloch | 2286f23 | 2012-06-15 13:27:53 +0000 | [diff] [blame] | 1 | package aQute.bnd.build; |
| 2 | |
| 3 | import java.io.*; |
| 4 | import java.util.*; |
| 5 | |
Stuart McCulloch | 39cc9ac | 2012-07-16 13:43:38 +0000 | [diff] [blame^] | 6 | import aQute.bnd.osgi.*; |
Stuart McCulloch | 2286f23 | 2012-06-15 13:27:53 +0000 | [diff] [blame] | 7 | import aQute.bnd.service.*; |
| 8 | import aQute.bnd.service.RepositoryPlugin.Strategy; |
Stuart McCulloch | 2286f23 | 2012-06-15 13:27:53 +0000 | [diff] [blame] | 9 | import aQute.libg.reporter.*; |
Stuart McCulloch | 2286f23 | 2012-06-15 13:27:53 +0000 | [diff] [blame] | 10 | |
| 11 | public interface ProjectMessages extends Messages { |
| 12 | |
| 13 | ERROR InvalidStrategy(String help, String[] args); |
| 14 | |
| 15 | ERROR RepoTooFewArguments(String help, String[] args); |
| 16 | |
| 17 | ERROR AddingNonExistentFileToClassPath_(File f); |
| 18 | |
| 19 | ERROR Deploying(Exception e); |
| 20 | |
| 21 | ERROR DeployingFile_On_Exception_(File file, String name, Exception e); |
| 22 | |
| 23 | ERROR MissingPom(); |
| 24 | |
| 25 | ERROR FoundVersions_ForStrategy_ButNoProvider(SortedMap<Version,RepositoryPlugin> versions, Strategy useStrategy); |
| 26 | |
| 27 | ERROR NoSuchProject(String bsn, String spec); |
| 28 | |
| 29 | ERROR CircularDependencyContext_Message_(String name, String message); |
| 30 | |
| 31 | ERROR IncompatibleHandler_For_(String launcher, String defaultHandler); |
| 32 | |
| 33 | ERROR NoOutputDirectory_(File output); |
| 34 | |
| 35 | ERROR MissingDependson_(String p); |
| 36 | |
| 37 | ERROR NoNameForReleaseRepository(); |
| 38 | |
| 39 | ERROR ReleaseRepository_NotFoundIn_(String name, List<RepositoryPlugin> plugins); |
| 40 | |
| 41 | ERROR Release_Into_Exception_(Jar jar, RepositoryPlugin rp, Exception e); |
| 42 | |
| 43 | ERROR NoScripters_(String script); |
| 44 | |
| 45 | ERROR SettingPackageInfoException_(Exception e); |
| 46 | |
| 47 | ERROR ConfusedNoContainerFile(); |
| 48 | |
| 49 | } |