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

Warnings.

This commit is contained in:
Cedric Beust 2015-10-29 23:17:28 -07:00
parent ea9d574f39
commit e221fb2087

View file

@ -62,7 +62,7 @@ open public class FileDependency(open val fileName: String) : IClasspathDependen
override fun toMavenDependencies(): org.apache.maven.model.Dependency { override fun toMavenDependencies(): org.apache.maven.model.Dependency {
with(org.apache.maven.model.Dependency()) { with(org.apache.maven.model.Dependency()) {
setSystemPath(jarFile.get().getAbsolutePath()) systemPath = jarFile.get().absolutePath
return this return this
} }
} }