izumi.fundamentals.platform.resources.IzArtifactId.scala Maven / Gradle / Ivy
The newest version!
package izumi.fundamentals.platform.resources
case class IzArtifactId(groupId: String, artifactId: String) {
override def toString: String = s"$groupId:$artifactId"
}