mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-26 08:27:12 -07:00
Bug in shortId.
This commit is contained in:
parent
faf5df0458
commit
4ea1d7f951
1 changed files with 1 additions and 1 deletions
|
@ -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>()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue