-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
72 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
generate-domino-update-site/src/main/java/org/openntf/p2/domino/updatesite/Messages.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package org.openntf.p2.domino.updatesite; | ||
|
||
import java.util.MissingResourceException; | ||
import java.util.ResourceBundle; | ||
|
||
public class Messages { | ||
private static final String BUNDLE_NAME = "org.openntf.p2.domino.updatesite.messages"; //$NON-NLS-1$ | ||
|
||
private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle.getBundle(BUNDLE_NAME); | ||
|
||
private Messages() { | ||
} | ||
|
||
public static String getString(String key) { | ||
try { | ||
return RESOURCE_BUNDLE.getString(key); | ||
} catch (MissingResourceException e) { | ||
return '!' + key + '!'; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
...omino-update-site/src/main/resources/org/openntf/p2/domino/updatesite/messages.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
AbstractMavenizeBundlesMojo.exceptionGeneratingPom=Exception while generating temporary pom | ||
AbstractMavenizeBundlesMojo.exceptionProcessingBundles=Exception while processing bundles | ||
DeployMavenizedBundlesMojo.unexpectedRepositoryFormat=Unexpected repository format: {0} | ||
GenerateUpdateSiteMojo.unableToLocateDomino=Unable to locate Domino directory; please specify using the `src` parameter | ||
GenerateUpdateSiteTask.0=Unable to locate xsp.http.bootstrap.jar - skipping bundle creation | ||
GenerateUpdateSiteTask.copying=Copying | ||
GenerateUpdateSiteTask.directoryExistsAsFile=Planned directory exists as a file: | ||
GenerateUpdateSiteTask.directoryNotExists=Directory does not exist: | ||
GenerateUpdateSiteTask.downloadingSourceBundle=- Downloading source bundle | ||
GenerateUpdateSiteTask.errorWritingSiteXml=Error writing site.xml file | ||
GenerateUpdateSiteTask.exceptionBuildingSiteXml=Exception while building site.xml document | ||
GenerateUpdateSiteTask.mismatchedFilename=Could not match filename pattern to | ||
GenerateUpdateSiteTask.repoDirDoesNotExist=Repository directory does not exist. | ||
GenerateUpdateSiteTask.unableToDownloadSourceBundle=Unable to download source bundle | ||
GenerateUpdateSiteTask.unableToFindFeatures=Unable to find features directory: | ||
GenerateUpdateSiteTask.unableToLoadNeon=Unable to load Neon artifacts.xml.xz | ||
GenerateUpdateSiteTask.unableToLocateNotesJar=Unable to locate Notes.jar within | ||
GenerateUpdateSiteTask.unableToLocatePlugins=Unable to locate plugin directories within | ||
GenerateUpdateSiteTask.wroteSiteXmlTo=Wrote site.xml contents to {0} |