All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pl.touk.nussknacker.ui.util.Project.scala Maven / Gradle / Ivy

There is a newer version: 1.17.0
Show newest version
package pl.touk.nussknacker.ui.util

import better.files.File
import java.nio.file.Path

object Project {

  def root: File = {
    val targetItClassesDir = Path.of(getClass.getResource("/").toURI)
    val rootDir            = targetItClassesDir.getParent.getParent.getParent.getParent.getParent
    File(rootDir)
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy