수색…


간단한 작업 만들기

작업을 정의하는 데 필요한 것은 유형 및 설명을 선언하는 것입니다.

lazy val exampleTask = taskKey[Unit]("An example task that will return no value.")

Unit 이 유형이기 때문에이 작업은 전적으로 부작용으로 구성됩니다. 정의 된 액션을 구현하려면 다음을 수행하십시오.

exampleTask := {
  val s: TaskStreams = streams.value
  s.log.info("The example task was executed.")
}

build.sbt 에 정의 된 경우 프로젝트를로드하고 실행할 수 있습니다.

> exampleTask
[info] The example task was executed.


Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow