All Downloads are FREE. Search and download functionalities are using the official Maven repository.

util.StringUtil Maven / Gradle / Ivy

/*
 * This is free and unencumbered software released into the public domain.
 * See UNLICENSE.
 */
package util;

import org.apache.maven.artifact.Artifact;

/** Utilities for making Error messages. */
public class StringUtil {

  /**
   * Creates a human-readable string for an artifact.
   *
   * @param artifact
   * @return
   */
  public static String makeArtifactNameString(Artifact artifact) {
    // TODO - Handle version ranges...
    if (artifact == null) {
      return "";
    }
    return artifact.getGroupId() + ":" + artifact.getArtifactId() + ":" + artifact.getVersion();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy