Skip to content

Commit 45c0910

Browse files
committed
updated site
1 parent e0e068c commit 45c0910

File tree

9 files changed

+17
-15
lines changed

9 files changed

+17
-15
lines changed

2.x/docs/en/guide/why-sbt-exists.html

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -235,10 +235,9 @@ <h2 id="sbt"><a class="header" href="#sbt">sbt</a></h2>
235235
</ul>
236236
<p>To a large extent, sbt standardizes the commands needed to build a given program or library.</p>
237237
<h2 id="why-buildsbt-dsl"><a class="header" href="#why-buildsbt-dsl">Why build.sbt DSL?</a></h2>
238-
<p>build.sbt DSL makes sbt a unique build tool,
239-
as opposed to other tools that use configuration file formats like YAML, TOML, and XML.
240-
Originally developed beween 2010 and 2013, <code>build.sbt</code> can start almost like a YAML file, declaring just <code>scalaVersion</code> and <code>libraryDependencies</code>,
241-
but it can supports more features to keep the build definition organized as the build grows larger:</p>
238+
<p>sbt adopts Scala-based build.sbt DSL to declare the subproject and task graph. Nowadays, using a DSL as opposed to configuration formats like YAML and XML hardly makes sbt unique. Many of the build tools such as Gradle, Google's Bazel, Meta's Buck, and Apple's SwiftPM use DSL to define the subproject.</p>
239+
<p><code>build.sbt</code> can start almost like a YAML file, declaring just <code>scalaVersion</code> and <code>libraryDependencies</code>,
240+
but it can scale as your need for the build system grows:</p>
242241
<ul>
243242
<li>To avoid repeating the same information, like the version number for a library, <code>build.sbt</code> can declare variables using <code>val</code>.</li>
244243
<li>Uses Scala language constructs like <code>if</code> to define settings and tasks, when needed.</li>

2.x/docs/en/print.html

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -787,10 +787,9 @@ <h2 id="sbt"><a class="header" href="#sbt">sbt</a></h2>
787787
</ul>
788788
<p>To a large extent, sbt standardizes the commands needed to build a given program or library.</p>
789789
<h2 id="why-buildsbt-dsl"><a class="header" href="#why-buildsbt-dsl">Why build.sbt DSL?</a></h2>
790-
<p>build.sbt DSL makes sbt a unique build tool,
791-
as opposed to other tools that use configuration file formats like YAML, TOML, and XML.
792-
Originally developed beween 2010 and 2013, <code>build.sbt</code> can start almost like a YAML file, declaring just <code>scalaVersion</code> and <code>libraryDependencies</code>,
793-
but it can supports more features to keep the build definition organized as the build grows larger:</p>
790+
<p>sbt adopts Scala-based build.sbt DSL to declare the subproject and task graph. Nowadays, using a DSL as opposed to configuration formats like YAML and XML hardly makes sbt unique. Many of the build tools such as Gradle, Google's Bazel, Meta's Buck, and Apple's SwiftPM use DSL to define the subproject.</p>
791+
<p><code>build.sbt</code> can start almost like a YAML file, declaring just <code>scalaVersion</code> and <code>libraryDependencies</code>,
792+
but it can scale as your need for the build system grows:</p>
794793
<ul>
795794
<li>To avoid repeating the same information, like the version number for a library, <code>build.sbt</code> can declare variables using <code>val</code>.</li>
796795
<li>Uses Scala language constructs like <code>if</code> to define settings and tasks, when needed.</li>

2.x/docs/en/searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

2.x/docs/ja/guide/why-sbt-exists.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,8 @@ <h2 id="sbt"><a class="header" href="#sbt">sbt</a></h2>
233233
</ul>
234234
<p>sbt は、プログラムやライブラリのビルドに必要なコマンド実装の大部分を標準化していると言っても過言ではない。</p>
235235
<h2 id="buildsbt-dsl-の必要性"><a class="header" href="#buildsbt-dsl-の必要性">build.sbt DSL の必要性</a></h2>
236-
<p>build.sbt DSL makes sbt a unique build tool, as opposed to other tools that use configuration file formats like YAML, TOML, and XML. Originally developed beween 2010 and 2013, <code>build.sbt</code> can start almost like a YAML file, declaring just <code>scalaVersion</code> and <code>libraryDependencies</code>, but it can supports more features to keep the build definition organized as the build grows larger:</p>
236+
<p>sbt adopts Scala-based build.sbt DSL to declare the subproject and task graph. Nowadays, using a DSL as opposed to configuration formats like YAML and XML hardly makes sbt unique. Many of the build tools such as Gradle, Google's Bazel, Meta's Buck, and Apple's SwiftPM use DSL to define the subproject.</p>
237+
<p><code>build.sbt</code> can start almost like a YAML file, declaring just <code>scalaVersion</code> and <code>libraryDependencies</code>, but it can scale as your need for the build system grows:</p>
237238
<ul>
238239
<li>ライブラリのためのバージョン番号など同じ情報の繰り返しを回避するため、<code>build.sbt</code><code>val</code> を使って変数を宣言できる。</li>
239240
<li>セッティングやタスクの定義内で必要に応じて <code>if</code> のような Scala 言語の言語構文を使うことができる。</li>

2.x/docs/ja/print.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -767,7 +767,8 @@ <h2 id="sbt"><a class="header" href="#sbt">sbt</a></h2>
767767
</ul>
768768
<p>sbt は、プログラムやライブラリのビルドに必要なコマンド実装の大部分を標準化していると言っても過言ではない。</p>
769769
<h2 id="buildsbt-dsl-の必要性"><a class="header" href="#buildsbt-dsl-の必要性">build.sbt DSL の必要性</a></h2>
770-
<p>build.sbt DSL makes sbt a unique build tool, as opposed to other tools that use configuration file formats like YAML, TOML, and XML. Originally developed beween 2010 and 2013, <code>build.sbt</code> can start almost like a YAML file, declaring just <code>scalaVersion</code> and <code>libraryDependencies</code>, but it can supports more features to keep the build definition organized as the build grows larger:</p>
770+
<p>sbt adopts Scala-based build.sbt DSL to declare the subproject and task graph. Nowadays, using a DSL as opposed to configuration formats like YAML and XML hardly makes sbt unique. Many of the build tools such as Gradle, Google's Bazel, Meta's Buck, and Apple's SwiftPM use DSL to define the subproject.</p>
771+
<p><code>build.sbt</code> can start almost like a YAML file, declaring just <code>scalaVersion</code> and <code>libraryDependencies</code>, but it can scale as your need for the build system grows:</p>
771772
<ul>
772773
<li>ライブラリのためのバージョン番号など同じ情報の繰り返しを回避するため、<code>build.sbt</code><code>val</code> を使って変数を宣言できる。</li>
773774
<li>セッティングやタスクの定義内で必要に応じて <code>if</code> のような Scala 言語の言語構文を使うことができる。</li>

2.x/docs/ja/searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

2.x/docs/zh-cn/guide/why-sbt-exists.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,8 @@ <h2 id="sbt"><a class="header" href="#sbt">sbt</a></h2>
233233
</ul>
234234
<p>To a large extent, sbt standardizes the commands needed to build a given program or library.</p>
235235
<h2 id="why-buildsbt-dsl"><a class="header" href="#why-buildsbt-dsl">Why build.sbt DSL?</a></h2>
236-
<p>build.sbt DSL makes sbt a unique build tool, as opposed to other tools that use configuration file formats like YAML, TOML, and XML. Originally developed beween 2010 and 2013, <code>build.sbt</code> can start almost like a YAML file, declaring just <code>scalaVersion</code> and <code>libraryDependencies</code>, but it can supports more features to keep the build definition organized as the build grows larger:</p>
236+
<p>sbt adopts Scala-based build.sbt DSL to declare the subproject and task graph. Nowadays, using a DSL as opposed to configuration formats like YAML and XML hardly makes sbt unique. Many of the build tools such as Gradle, Google's Bazel, Meta's Buck, and Apple's SwiftPM use DSL to define the subproject.</p>
237+
<p><code>build.sbt</code> can start almost like a YAML file, declaring just <code>scalaVersion</code> and <code>libraryDependencies</code>, but it can scale as your need for the build system grows:</p>
237238
<ul>
238239
<li>To avoid repeating the same information, like the version number for a library, <code>build.sbt</code> can declare variables using <code>val</code>.</li>
239240
<li>Uses Scala language constructs like <code>if</code> to define settings and tasks, when needed.</li>

2.x/docs/zh-cn/print.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -767,7 +767,8 @@ <h2 id="sbt"><a class="header" href="#sbt">sbt</a></h2>
767767
</ul>
768768
<p>To a large extent, sbt standardizes the commands needed to build a given program or library.</p>
769769
<h2 id="why-buildsbt-dsl"><a class="header" href="#why-buildsbt-dsl">Why build.sbt DSL?</a></h2>
770-
<p>build.sbt DSL makes sbt a unique build tool, as opposed to other tools that use configuration file formats like YAML, TOML, and XML. Originally developed beween 2010 and 2013, <code>build.sbt</code> can start almost like a YAML file, declaring just <code>scalaVersion</code> and <code>libraryDependencies</code>, but it can supports more features to keep the build definition organized as the build grows larger:</p>
770+
<p>sbt adopts Scala-based build.sbt DSL to declare the subproject and task graph. Nowadays, using a DSL as opposed to configuration formats like YAML and XML hardly makes sbt unique. Many of the build tools such as Gradle, Google's Bazel, Meta's Buck, and Apple's SwiftPM use DSL to define the subproject.</p>
771+
<p><code>build.sbt</code> can start almost like a YAML file, declaring just <code>scalaVersion</code> and <code>libraryDependencies</code>, but it can scale as your need for the build system grows:</p>
771772
<ul>
772773
<li>To avoid repeating the same information, like the version number for a library, <code>build.sbt</code> can declare variables using <code>val</code>.</li>
773774
<li>Uses Scala language constructs like <code>if</code> to define settings and tasks, when needed.</li>

2.x/docs/zh-cn/searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)