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

indigoplugin.core.IndigoBuildSBT.scala Maven / Gradle / Ivy

The newest version!
package indigoplugin.core

import os._
import indigoplugin.utils.AsciiLogo
import indigoplugin.IndigoOptions

object IndigoBuildSBT {

  def build(
      scriptPathBase: Path,
      baseDir: String,
      options: IndigoOptions,
      outputFolderName: String,
      scriptNames: List[String]
  ): Unit = {

    println(AsciiLogo.logo)

    IndigoBuild.build(
      scriptPathBase,
      options,
      Path(baseDir) / "target" / outputFolderName,
      scriptNames
    )
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy