Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos and grammar #81

Merged
merged 1 commit into from
Oct 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ public void filterResources(MavenResourcesExecution mavenResourcesExecution) thr
&& isFilteringUsed
&& propertiesFiles.size() > 0) {
// @todo Sometime in the future we should change this to be a warning
LOGGER.info("The encoding used to copy filtered properties files have not been set."
LOGGER.info("The encoding used to copy filtered properties files has not been set."
+ " This means that the same encoding will be used to copy filtered properties files"
+ " as when copying other filtered resources. This might not be what you want!"
+ " Run your build with --debug to see which files might be affected."
Expand All @@ -311,7 +311,7 @@ public void filterResources(MavenResourcesExecution mavenResourcesExecution) thr
+ "examples/filtering-properties-files.html");

StringBuilder affectedFiles = new StringBuilder();
affectedFiles.append("Here is a list of the filtered properties files in you project that might be"
affectedFiles.append("Here is a list of the filtered properties files in your project that might be"
+ " affected by encoding problems: ");
for (File propertiesFile : propertiesFiles) {
affectedFiles.append(System.lineSeparator()).append(" - ").append(propertiesFile.getPath());
Expand Down Expand Up @@ -433,7 +433,7 @@ private void copyDirectoryLayout(File sourceDirectory, File destinationDirectory
}

if (!sourceDirectory.exists()) {
throw new IOException("Source directory doesn't exists (" + sourceDirectory.getAbsolutePath() + ").");
throw new IOException("Source directory doesn't exist (" + sourceDirectory.getAbsolutePath() + ").");
}

for (String name : scanner.getIncludedDirectories()) {
Expand Down