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

com.outr.jefe.resolve.Artifact.scala Maven / Gradle / Ivy

The newest version!
package com.outr.jefe.resolve

/**
  * General information about an artifact
  */
case class Artifact(group: String, name: String) {
  def withVersion(version: Version): VersionedArtifact = VersionedArtifact(group, name, version)
  def %(version: Version): VersionedArtifact = withVersion(version)

  override def toString: String = s"$group % $name"
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy