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

scala.build.postprocessing.PostProcessor.scala Maven / Gradle / Ivy

package scala.build.postprocessing

import scala.build.{GeneratedSource, Logger}

trait PostProcessor {
  def postProcess(
    generatedSources: Seq[GeneratedSource],
    mappings: Map[String, (String, Int)],
    workspace: os.Path,
    output: os.Path,
    logger: Logger,
    scalaVersion: String
  ): Either[String, Unit]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy