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