diff --git a/src/main/java/io/github/ascopes/protobufmavenplugin/AbstractGenerateMojo.java b/src/main/java/io/github/ascopes/protobufmavenplugin/AbstractGenerateMojo.java index 53ae79ef..bb54db22 100644 --- a/src/main/java/io/github/ascopes/protobufmavenplugin/AbstractGenerateMojo.java +++ b/src/main/java/io/github/ascopes/protobufmavenplugin/AbstractGenerateMojo.java @@ -19,7 +19,6 @@ import static java.util.Objects.requireNonNullElse; import static java.util.Objects.requireNonNullElseGet; -import io.github.ascopes.protobufmavenplugin.dependency.DependencyResolutionDepth; import io.github.ascopes.protobufmavenplugin.dependency.ResolutionException; import io.github.ascopes.protobufmavenplugin.generate.ImmutableGenerationRequest; import io.github.ascopes.protobufmavenplugin.generate.SourceCodeGenerator; diff --git a/src/main/java/io/github/ascopes/protobufmavenplugin/dependency/DependencyResolutionDepth.java b/src/main/java/io/github/ascopes/protobufmavenplugin/DependencyResolutionDepth.java similarity index 94% rename from src/main/java/io/github/ascopes/protobufmavenplugin/dependency/DependencyResolutionDepth.java rename to src/main/java/io/github/ascopes/protobufmavenplugin/DependencyResolutionDepth.java index 4226d915..d36e1770 100644 --- a/src/main/java/io/github/ascopes/protobufmavenplugin/dependency/DependencyResolutionDepth.java +++ b/src/main/java/io/github/ascopes/protobufmavenplugin/DependencyResolutionDepth.java @@ -14,7 +14,7 @@ * limitations under the License. */ -package io.github.ascopes.protobufmavenplugin.dependency; +package io.github.ascopes.protobufmavenplugin; /** * User parameter to configure how to resolve dependencies. diff --git a/src/main/java/io/github/ascopes/protobufmavenplugin/dependency/BinaryPluginResolver.java b/src/main/java/io/github/ascopes/protobufmavenplugin/dependency/BinaryPluginResolver.java index fd6d4e15..12347e78 100644 --- a/src/main/java/io/github/ascopes/protobufmavenplugin/dependency/BinaryPluginResolver.java +++ b/src/main/java/io/github/ascopes/protobufmavenplugin/dependency/BinaryPluginResolver.java @@ -16,6 +16,7 @@ package io.github.ascopes.protobufmavenplugin.dependency; +import io.github.ascopes.protobufmavenplugin.DependencyResolutionDepth; import io.github.ascopes.protobufmavenplugin.MavenArtifact; import io.github.ascopes.protobufmavenplugin.platform.Digests; import io.github.ascopes.protobufmavenplugin.platform.FileUtils; diff --git a/src/main/java/io/github/ascopes/protobufmavenplugin/dependency/JvmPluginResolver.java b/src/main/java/io/github/ascopes/protobufmavenplugin/dependency/JvmPluginResolver.java index 3c6523bd..36ca5b3e 100644 --- a/src/main/java/io/github/ascopes/protobufmavenplugin/dependency/JvmPluginResolver.java +++ b/src/main/java/io/github/ascopes/protobufmavenplugin/dependency/JvmPluginResolver.java @@ -16,6 +16,7 @@ package io.github.ascopes.protobufmavenplugin.dependency; +import io.github.ascopes.protobufmavenplugin.DependencyResolutionDepth; import io.github.ascopes.protobufmavenplugin.MavenArtifact; import io.github.ascopes.protobufmavenplugin.generate.TemporarySpace; import io.github.ascopes.protobufmavenplugin.platform.Digests; diff --git a/src/main/java/io/github/ascopes/protobufmavenplugin/dependency/MavenDependencyPathResolver.java b/src/main/java/io/github/ascopes/protobufmavenplugin/dependency/MavenDependencyPathResolver.java index d260fd8a..781c0a7a 100644 --- a/src/main/java/io/github/ascopes/protobufmavenplugin/dependency/MavenDependencyPathResolver.java +++ b/src/main/java/io/github/ascopes/protobufmavenplugin/dependency/MavenDependencyPathResolver.java @@ -16,6 +16,7 @@ package io.github.ascopes.protobufmavenplugin.dependency; +import io.github.ascopes.protobufmavenplugin.DependencyResolutionDepth; import io.github.ascopes.protobufmavenplugin.MavenArtifact; import java.io.File; import java.nio.file.Path; diff --git a/src/main/java/io/github/ascopes/protobufmavenplugin/dependency/MavenProjectDependencyPathResolver.java b/src/main/java/io/github/ascopes/protobufmavenplugin/dependency/MavenProjectDependencyPathResolver.java index 4f4fd5b9..cb639710 100644 --- a/src/main/java/io/github/ascopes/protobufmavenplugin/dependency/MavenProjectDependencyPathResolver.java +++ b/src/main/java/io/github/ascopes/protobufmavenplugin/dependency/MavenProjectDependencyPathResolver.java @@ -16,6 +16,7 @@ package io.github.ascopes.protobufmavenplugin.dependency; +import io.github.ascopes.protobufmavenplugin.DependencyResolutionDepth; import java.io.File; import java.nio.file.Path; import java.util.Collection; diff --git a/src/main/java/io/github/ascopes/protobufmavenplugin/dependency/ProtocResolver.java b/src/main/java/io/github/ascopes/protobufmavenplugin/dependency/ProtocResolver.java index 62d55d67..e98a58f4 100644 --- a/src/main/java/io/github/ascopes/protobufmavenplugin/dependency/ProtocResolver.java +++ b/src/main/java/io/github/ascopes/protobufmavenplugin/dependency/ProtocResolver.java @@ -16,6 +16,7 @@ package io.github.ascopes.protobufmavenplugin.dependency; +import io.github.ascopes.protobufmavenplugin.DependencyResolutionDepth; import io.github.ascopes.protobufmavenplugin.platform.FileUtils; import io.github.ascopes.protobufmavenplugin.platform.HostSystem; import java.io.IOException; diff --git a/src/main/java/io/github/ascopes/protobufmavenplugin/generate/GenerationRequest.java b/src/main/java/io/github/ascopes/protobufmavenplugin/generate/GenerationRequest.java index aa29bf77..6f6bc163 100644 --- a/src/main/java/io/github/ascopes/protobufmavenplugin/generate/GenerationRequest.java +++ b/src/main/java/io/github/ascopes/protobufmavenplugin/generate/GenerationRequest.java @@ -16,8 +16,8 @@ package io.github.ascopes.protobufmavenplugin.generate; +import io.github.ascopes.protobufmavenplugin.DependencyResolutionDepth; import io.github.ascopes.protobufmavenplugin.MavenArtifact; -import io.github.ascopes.protobufmavenplugin.dependency.DependencyResolutionDepth; import java.net.URL; import java.nio.file.Path; import java.util.Collection;