You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<p>This is called a <strong>build definition</strong>, and it contains the information sbt needs to compile your project. This is written in <code>.sbt</code>format, a subset of Scala language.</p>
275
-
<p>Here's what's in <code>src/main/scala/example/Main.scala</code>:</p>
<p>This is a Hello world template. We can run it from the sbt shell by starting <code>sbt --client</code>and typing <code>run <your_name></code>inside the shell:</p>
281
+
<p>これは、Hello world のテンプレートだ。これを実行するには、<code>sbt --client</code>と打ち込んで sbt シェルを起動して、シェル内から <code>run <名前></code>と入力する:</p>
<p>In addition to a few <code>.local</code>templates,<code>sbt new</code>integrates with <ahref="https://www.foundweekends.org/giter8/">Giter8</a>, and open templating system that uses GitHub to host templates. For example, <code>scala/scala3.g8</code>is maintained by the Scala team to create a new Scala 3 build:</p>
<p><ahref="https://github.com/foundweekends/giter8/wiki/giter8-templates">Giter8 wiki</a>lists over 100 templates that can jump start your new build.</p>
<divstyle="break-before: page; page-break-before: always;"></div><h1id="creating-a-new-build"><aclass="header" href="#creating-a-new-build">Creating a new build</a></h1>
780
-
<p>To start a new build with <code>sbt</code>, use <code>sbt new</code>.</p>
<p>This is called a <strong>build definition</strong>, and it contains the information sbt needs to compile your project. This is written in <code>.sbt</code>format, a subset of Scala language.</p>
843
-
<p>Here's what's in <code>src/main/scala/example/Main.scala</code>:</p>
<p>This is a Hello world template. We can run it from the sbt shell by starting <code>sbt --client</code>and typing <code>run <your_name></code>inside the shell:</p>
849
+
<p>これは、Hello world のテンプレートだ。これを実行するには、<code>sbt --client</code>と打ち込んで sbt シェルを起動して、シェル内から <code>run <名前></code>と入力する:</p>
<p>In addition to a few <code>.local</code>templates,<code>sbt new</code>integrates with <ahref="https://www.foundweekends.org/giter8/">Giter8</a>, and open templating system that uses GitHub to host templates. For example, <code>scala/scala3.g8</code>is maintained by the Scala team to create a new Scala 3 build:</p>
<p><ahref="https://github.com/foundweekends/giter8/wiki/giter8-templates">Giter8 wiki</a>lists over 100 templates that can jump start your new build.</p>
<p>An sbt build is executed using <code>sbt</code> runner, also called "sbt-the-shell-script" to distinguish from other components. It's important to note is that sbt runner is designed to run <strong>any version</strong> of sbt.</p>
0 commit comments