1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 00:17:11 -07:00

Bug in shortId.

This commit is contained in:
Cedric Beust 2015-10-29 05:02:26 -07:00
parent faf5df0458
commit 4ea1d7f951

View file

@ -75,7 +75,7 @@ public class MavenDependency @Inject constructor(mavenId: MavenId,
return Versions.toLongVersion(version).compareTo(Versions.toLongVersion(other.version))
}
override val shortId = groupId + ":" + artifactId
override val shortId = groupId + ":" + artifactId + ":"
override fun directDependencies() : List<IClasspathDependency> {
val result = arrayListOf<IClasspathDependency>()