1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/common/sbt.md
코드싸이 4b5248236b
common/s*: add and update Korean translation (#14666)
* common/s*: add and update Korean translation

* scamper: fix typo

* Update pages.ko/common/simplehttpserver.md

Co-authored-by: Chooooo <contact@choo.ooo>

* Update pages.ko/common/steamcmd.md

Co-authored-by: Chooooo <contact@choo.ooo>

---------

Co-authored-by: Sebastiaan Speck <shem.speck@gmail.com>
Co-authored-by: Chooooo <contact@choo.ooo>
2024-11-09 10:41:41 +09:00

691 B

sbt

Scala 및 Java 프로젝트를 위한 빌드 도구. 더 많은 정보: https://www.scala-sbt.org/1.x/docs/.

  • REPL(대화형 셸) 시작:

sbt

  • GitHub에 호스팅된 기존 Giter8 템플릿에서 새 Scala 프로젝트 생성:

sbt new {{scala/hello-world.g8}}

  • 모든 테스트 컴파일 및 실행:

sbt test

  • target 디렉토리의 모든 생성된 파일 삭제:

sbt clean

  • src/main/scalasrc/main/java 디렉토리의 주요 소스 컴파일:

sbt compile

  • 지정된 버전의 sbt 사용:

sbt -sbt-version {{버전}}

  • 특정 jar 파일을 sbt 실행 파일로 사용:

sbt -sbt-jar {{경로}}

  • 모든 sbt 옵션 나열:

sbt -h