You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by el...@apache.org on 2021/01/17 18:59:18 UTC

[maven-artifact-plugin] branch util2 updated: organize imports

This is an automated email from the ASF dual-hosted git repository.

elharo pushed a commit to branch util2
in repository https://gitbox.apache.org/repos/asf/maven-artifact-plugin.git


The following commit(s) were added to refs/heads/util2 by this push:
     new dcb8b13  organize imports
dcb8b13 is described below

commit dcb8b13be994bc2b0af082b23bb24d8e72b8d993
Author: Elliotte Rusty Harold <el...@ibiblio.org>
AuthorDate: Sun Jan 17 13:59:06 2021 -0500

    organize imports
---
 .../java/org/apache/maven/plugins/artifact/buildinfo/MavenVersion.java | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/maven/plugins/artifact/buildinfo/MavenVersion.java b/src/main/java/org/apache/maven/plugins/artifact/buildinfo/MavenVersion.java
index 3d37fdc..a252626 100644
--- a/src/main/java/org/apache/maven/plugins/artifact/buildinfo/MavenVersion.java
+++ b/src/main/java/org/apache/maven/plugins/artifact/buildinfo/MavenVersion.java
@@ -1,7 +1,5 @@
 package org.apache.maven.plugins.artifact.buildinfo;
 
-import org.apache.commons.lang3.StringUtils;
-
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
@@ -21,6 +19,7 @@ import org.apache.commons.lang3.StringUtils;
  * under the License.
  */
 
+import org.apache.commons.lang3.StringUtils;
 import org.apache.maven.cli.MavenCli;
 
 import java.io.IOException;