package org.jetbrains.jps
+import com.intellij.openapi.util.io.FileUtil
import org.jetbrains.jps.idea.Facet
/**
}
meta.content = {Object[] arg ->
- arg.each { contentRoots << it.toString() }
+ arg.each { contentRoots << FileUtil.toCanonicalPath(it) }
}
meta.src = {Object[] arg ->
- arg.each { sourceRoots << it.toString() }
+ arg.each { sourceRoots << FileUtil.toCanonicalPath(it) }
}
meta.testSrc = {Object[] arg ->
- arg.each { testRoots << it.toString() }
+ arg.each { testRoots << FileUtil.toCanonicalPath(it) }
}
meta.exclude = {Object[] arg ->
- arg.each { excludes << it.toString() }
+ arg.each { excludes << FileUtil.toCanonicalPath(it) }
}
initializer.delegate = meta