Skip to content

Commit

Permalink
#426 add missing imports (after merging with master)
Browse files Browse the repository at this point in the history
fix typos
  • Loading branch information
stefanseifert committed Jan 11, 2022
1 parent ce83fdf commit 740e0b4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/codehaus/mojo/versions/SetMojo.java
Expand Up @@ -195,7 +195,7 @@ public class SetMojo
/**
* Whether to start processing at the local aggregation root (which might be a parent module
* of that module where Maven is executed in, and the version change may affect parent and sibling modules).
* Setting to fale makes sure only the module (and it's submodule) where Maven is executed for is affected.
* Setting to false makes sure only the module (and it's submodules) where Maven is executed for is affected.
*
* @since 2.9
*/
Expand Down
4 changes: 4 additions & 0 deletions src/main/java/org/codehaus/mojo/versions/api/PomHelper.java
Expand Up @@ -20,6 +20,7 @@
*/

import org.apache.maven.artifact.Artifact;
import org.apache.maven.artifact.repository.ArtifactRepository;
import org.apache.maven.artifact.versioning.InvalidVersionSpecificationException;
import org.apache.maven.artifact.versioning.VersionRange;
import org.apache.maven.model.Dependency;
Expand All @@ -30,7 +31,10 @@
import org.apache.maven.model.ReportPlugin;
import org.apache.maven.model.io.xpp3.MavenXpp3Reader;
import org.apache.maven.plugin.logging.Log;
import org.apache.maven.profiles.ProfileManager;
import org.apache.maven.project.MavenProject;
import org.apache.maven.project.MavenProjectBuilder;
import org.apache.maven.project.ProjectBuildingException;
import org.codehaus.mojo.versions.rewriting.ModifiedPomXMLEventReader;
import org.codehaus.mojo.versions.utils.RegexUtils;
import org.codehaus.plexus.component.configurator.expression.ExpressionEvaluationException;
Expand Down

0 comments on commit 740e0b4

Please sign in to comment.