Skip to content

Commit d1b8734

Browse files
committed
updated site
1 parent ef2055e commit d1b8734

6 files changed

Lines changed: 33 additions & 33 deletions

File tree

2.x/docs/ja/changes/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<!-- Book generated using mdBook -->
55
<meta charset="UTF-8">
6-
<title>Changes - The Book of sbt</title>
6+
<title>変更点 - The Book of sbt</title>
77

88

99
<!-- Custom HTML head -->
@@ -208,7 +208,7 @@ <h1 class="menu-title">The Book of sbt</h1>
208208

209209
<div id="content" class="content">
210210
<main>
211-
<h1 id="changes"><a class="header" href="#changes">Changes</a></h1>
211+
<h1 id="変更点"><a class="header" href="#変更点">変更点</a></h1>
212212

213213
</main>
214214

2.x/docs/ja/changes/sbt-2.0-change-summary.html

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<!-- Book generated using mdBook -->
55
<meta charset="UTF-8">
6-
<title>sbt 2.0 changes - The Book of sbt</title>
6+
<title>sbt 2.0 の変更点 - The Book of sbt</title>
77

88

99
<!-- Custom HTML head -->
@@ -208,7 +208,7 @@ <h1 class="menu-title">The Book of sbt</h1>
208208

209209
<div id="content" class="content">
210210
<main>
211-
<h1 id="sbt-20-changes-draft"><a class="header" href="#sbt-20-changes-draft">sbt 2.0 changes (draft)</a></h1>
211+
<h1 id="sbt-20-の変更点"><a class="header" href="#sbt-20-の変更点">sbt 2.0 の変更点</a></h1>
212212
<div id="admonition-warning" class="admonition admonish-warning" role="note" aria-labelledby="admonition-warning-title">
213213
<div class="admonition-title">
214214
<div id="admonition-warning-title">
@@ -220,23 +220,23 @@ <h1 id="sbt-20-changes-draft"><a class="header" href="#sbt-20-changes-draft">sbt
220220
<p>これは未だリリースされていない sbt 2.x のドキュメンテーションの草稿だ。一般的な概念は sbt 1.x とも一貫しているが、2.x 系および本稿の詳細は今後変更される可能性がある。</p>
221221
</div>
222222
</div>
223-
<h2 id="changes-with-compatibility-implications"><a class="header" href="#changes-with-compatibility-implications">Changes with compatibility implications</a></h2>
223+
<h2 id="互換性に影響のある変更点"><a class="header" href="#互換性に影響のある変更点">互換性に影響のある変更点</a></h2>
224224
<p>See also <a href="./migrating-from-sbt-1.x.html">Migrating from sbt 1.x</a>.</p>
225225
<ul>
226-
<li><strong>Scala 3 in metabuild</strong>. sbt 2.x build.sbt DSL, used for build definitions and plugins, is based on Scala 3.x (currently <strong>3.7.2</strong>) (Both sbt 1.x and 2.x are capable of building Scala 2.x and 3.x) by <a href="https://github.com/eed3si9n">@eed3si9n</a>, <a href="https://github.com/adpi2">@adpi2</a>, and others.</li>
227-
<li><strong>Common settings</strong>. Bare settings are added to all subprojects, as opposed to just the root subproject, and thus replacing the role that <code>ThisBuild</code> has played.</li>
228-
<li><strong>Cached task</strong>. All tasks are cached by default. Details in <a href="../concepts/caching.html">Caching</a>.</li>
229-
<li><strong>Incremental test</strong>. <code>test</code> task is changed to be incremental test that can cache test results. Use <code>testFull</code> for full test by <a href="https://github.com/eed3si9n">@eed3si9n</a> in <a href="https://github.com/sbt/sbt/pull/7686">#7686</a></li>
230-
<li><code>test</code> task type is changed from <code>Unit</code> to <code>TestResult</code> by <a href="https://github.com/eed3si9n">@eed3si9n</a> in <a href="https://github.com/sbt/sbt/pull/8181">#8181</a></li>
231-
<li>Default settings and tasks keys typed to <code>URL</code> (i.e. <code>apiMappings</code>, <code>apiURL</code>, <code>homepage</code>, <code>organizationHomepage</code>, <code>releaseNotesURL</code>) were changed to <code>URI</code> in <a href="https://github.com/sbt/sbt/pull/7927">#7927</a>.</li>
232-
<li><code>licenses</code> key is changed from <code>Seq[(String, URL)]</code> to <code>Seq[License]</code> in <a href="https://github.com/sbt/sbt/pull/7927">#7927</a>.</li>
233-
<li>sbt 2.x plugins are published with <code>_sbt2_3</code> suffix by <a href="https://github.com/eed3si9n">@eed3si9n</a> in <a href="https://github.com/sbt/sbt/pull/7671">#7671</a></li>
234-
<li>sbt 2.x adds <code>platform</code> setting so <code>ModuleID</code>'s <code>%%</code> operator can cross build on JVM as well as JS and Native, as opposed to <code>%%%</code> operator that was created in a plugin to workaround this issue, by <a href="https://github.com/eed3si9n">@eed3si9n</a> in <a href="https://github.com/sbt/sbt/pull/6746">#6746</a></li>
235-
<li>Dropped <code>useCoursier</code> setting so Coursier cannot be opted out, by <a href="https://github.com/eed3si9n">@eed3si9n</a> in <a href="https://github.com/sbt/sbt/pull/7712">#7712</a></li>
226+
<li><strong>Scala 3 を用いたメタビルド</strong>。ビルド定義やプラグインに使われる sbt 2.x build.sbt DSLScala 3.x ベースとなった (現行では <strong>3.7.2</strong>) (sbt 1.x 並びに 2.x は、Scala 2.x 3.x の両方をビルドすることが可能) by <a href="https://github.com/eed3si9n">@eed3si9n</a>, <a href="https://github.com/adpi2">@adpi2</a>, and others.</li>
227+
<li><strong>コモン・セッティング</strong>。build.sbt に直書きされたセッティングは、ルートサブプロジェクトだけではなく、全てのサブプロジェクトに追加され、これまで <code>ThisBuild</code> が受け持ってきた役目を果たすことができる。</li>
228+
<li><strong>キャッシュ化されたタスク</strong>。全てのタスクはデフォルトで、キャッシュ化されている。詳細は<a href="../concepts/caching.html">キャッシュ</a>参照。</li>
229+
<li><strong>差分テスト</strong><code>test</code> は、テスト結果をキャッシュする差分テストへと変更された。全テストを走らせたい場合は <code>testFull</code> を使う by <a href="https://github.com/eed3si9n">@eed3si9n</a> in <a href="https://github.com/sbt/sbt/pull/7686">#7686</a></li>
230+
<li><code>test</code> タスクの形が <code>Unit</code> から <code>TestResult</code> へと変更された by <a href="https://github.com/eed3si9n">@eed3si9n</a> in <a href="https://github.com/sbt/sbt/pull/8181">#8181</a></li>
231+
<li>以前 <code>URL</code> に型付けされていたデフォルトのセッティングやタスクキー (<code>apiMappings</code>, <code>apiURL</code>, <code>homepage</code>, <code>organizationHomepage</code>, <code>releaseNotesURL</code> など) は <code>URI</code> に変更された in <a href="https://github.com/sbt/sbt/pull/7927">#7927</a></li>
232+
<li><code>license</code> キーの型が <code>Seq[(String, URL)]</code> から <code>Seq[License]</code> へと変更された in <a href="https://github.com/sbt/sbt/pull/7927">#7927</a></li>
233+
<li>sbt 2.x プラグインは <code>_sbt2_3</code> という suffix を用いて公開される by <a href="https://github.com/eed3si9n">@eed3si9n</a> in <a href="https://github.com/sbt/sbt/pull/7671">#7671</a></li>
234+
<li>sbt 2.x は、<code>platform</code> セッティングを追加して、<code>ModuleID</code><code>%%%</code> 演算子を使わなくても、<code>%%</code> 演算子だけで JVM、JS、Native のクロスビルドができるようにした by <a href="https://github.com/eed3si9n">@eed3si9n</a> in <a href="https://github.com/sbt/sbt/pull/6746">#6746</a></li>
235+
<li><code>useCoursier</code> セッティングを廃止して、Coursier をオプトアウトできないようにした by <a href="https://github.com/eed3si9n">@eed3si9n</a> in <a href="https://github.com/sbt/sbt/pull/7712">#7712</a></li>
236236
<li><code>Key.Classpath</code> is changed to be an alias of the <code>Seq[Attributed[xsbti.HashedVirtualFileRef]]</code> type, instead of <code>Seq[Attributed[File]]</code>. Similarly, some task keys that used to return <code>File</code> have changed to return <code>HashedVirtualFileRef</code> instead. See <a href="../concepts/caching.html#caching-files">Caching Files</a>.</li>
237237
<li>In sbt 2.x <code>target</code> defaults to <code>target/out/jvm/scala-3.7.2/&lt;subproject&gt;/</code>, as opposed to <code>&lt;subproject&gt;/target/</code>.</li>
238238
</ul>
239-
<h3 id="dropped-dreprecations"><a class="header" href="#dropped-dreprecations">Dropped dreprecations</a></h3>
239+
<h3 id="勧告どおり廃止された機能"><a class="header" href="#勧告どおり廃止された機能">勧告どおり廃止された機能</a></h3>
240240
<ul>
241241
<li>Removed <code>IntegrationTest</code> configuration in <a href="https://github.com/sbt/sbt/pull/8184">#8184</a></li>
242242
<li>Removed sbt 0.13 style shell syntax in <a href="https://github.com/sbt/sbt/pull/7700">#7700</a></li>

2.x/docs/ja/print.html

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1289,8 +1289,8 @@ <h3 id="configuring-version-control"><a class="header" href="#configuring-versio
12891289
<li><a href="guide/../recipes/import-to-intellij.html">Import to IntelliJ IDEA</a></li>
12901290
<li><a href="guide/../recipes/use-neovim.html">Use Neovim</a></li>
12911291
</ul>
1292-
<div style="break-before: page; page-break-before: always;"></div><h1 id="changes"><a class="header" href="#changes">Changes</a></h1>
1293-
<div style="break-before: page; page-break-before: always;"></div><h1 id="sbt-20-changes-draft"><a class="header" href="#sbt-20-changes-draft">sbt 2.0 changes (draft)</a></h1>
1292+
<div style="break-before: page; page-break-before: always;"></div><h1 id="変更点"><a class="header" href="#変更点">変更点</a></h1>
1293+
<div style="break-before: page; page-break-before: always;"></div><h1 id="sbt-20-の変更点"><a class="header" href="#sbt-20-の変更点">sbt 2.0 の変更点</a></h1>
12941294
<div id="admonition-warning" class="admonition admonish-warning" role="note" aria-labelledby="admonition-warning-title">
12951295
<div class="admonition-title">
12961296
<div id="admonition-warning-title">
@@ -1302,23 +1302,23 @@ <h3 id="configuring-version-control"><a class="header" href="#configuring-versio
13021302
<p>これは未だリリースされていない sbt 2.x のドキュメンテーションの草稿だ。一般的な概念は sbt 1.x とも一貫しているが、2.x 系および本稿の詳細は今後変更される可能性がある。</p>
13031303
</div>
13041304
</div>
1305-
<h2 id="changes-with-compatibility-implications"><a class="header" href="#changes-with-compatibility-implications">Changes with compatibility implications</a></h2>
1305+
<h2 id="互換性に影響のある変更点"><a class="header" href="#互換性に影響のある変更点">互換性に影響のある変更点</a></h2>
13061306
<p>See also <a href="changes/./migrating-from-sbt-1.x.html">Migrating from sbt 1.x</a>.</p>
13071307
<ul>
1308-
<li><strong>Scala 3 in metabuild</strong>. sbt 2.x build.sbt DSL, used for build definitions and plugins, is based on Scala 3.x (currently <strong>3.7.2</strong>) (Both sbt 1.x and 2.x are capable of building Scala 2.x and 3.x) by <a href="https://github.com/eed3si9n">@eed3si9n</a>, <a href="https://github.com/adpi2">@adpi2</a>, and others.</li>
1309-
<li><strong>Common settings</strong>. Bare settings are added to all subprojects, as opposed to just the root subproject, and thus replacing the role that <code>ThisBuild</code> has played.</li>
1310-
<li><strong>Cached task</strong>. All tasks are cached by default. Details in <a href="changes/../concepts/caching.html">Caching</a>.</li>
1311-
<li><strong>Incremental test</strong>. <code>test</code> task is changed to be incremental test that can cache test results. Use <code>testFull</code> for full test by <a href="https://github.com/eed3si9n">@eed3si9n</a> in <a href="https://github.com/sbt/sbt/pull/7686">#7686</a></li>
1312-
<li><code>test</code> task type is changed from <code>Unit</code> to <code>TestResult</code> by <a href="https://github.com/eed3si9n">@eed3si9n</a> in <a href="https://github.com/sbt/sbt/pull/8181">#8181</a></li>
1313-
<li>Default settings and tasks keys typed to <code>URL</code> (i.e. <code>apiMappings</code>, <code>apiURL</code>, <code>homepage</code>, <code>organizationHomepage</code>, <code>releaseNotesURL</code>) were changed to <code>URI</code> in <a href="https://github.com/sbt/sbt/pull/7927">#7927</a>.</li>
1314-
<li><code>licenses</code> key is changed from <code>Seq[(String, URL)]</code> to <code>Seq[License]</code> in <a href="https://github.com/sbt/sbt/pull/7927">#7927</a>.</li>
1315-
<li>sbt 2.x plugins are published with <code>_sbt2_3</code> suffix by <a href="https://github.com/eed3si9n">@eed3si9n</a> in <a href="https://github.com/sbt/sbt/pull/7671">#7671</a></li>
1316-
<li>sbt 2.x adds <code>platform</code> setting so <code>ModuleID</code>'s <code>%%</code> operator can cross build on JVM as well as JS and Native, as opposed to <code>%%%</code> operator that was created in a plugin to workaround this issue, by <a href="https://github.com/eed3si9n">@eed3si9n</a> in <a href="https://github.com/sbt/sbt/pull/6746">#6746</a></li>
1317-
<li>Dropped <code>useCoursier</code> setting so Coursier cannot be opted out, by <a href="https://github.com/eed3si9n">@eed3si9n</a> in <a href="https://github.com/sbt/sbt/pull/7712">#7712</a></li>
1308+
<li><strong>Scala 3 を用いたメタビルド</strong>。ビルド定義やプラグインに使われる sbt 2.x build.sbt DSLScala 3.x ベースとなった (現行では <strong>3.7.2</strong>) (sbt 1.x 並びに 2.x は、Scala 2.x 3.x の両方をビルドすることが可能) by <a href="https://github.com/eed3si9n">@eed3si9n</a>, <a href="https://github.com/adpi2">@adpi2</a>, and others.</li>
1309+
<li><strong>コモン・セッティング</strong>。build.sbt に直書きされたセッティングは、ルートサブプロジェクトだけではなく、全てのサブプロジェクトに追加され、これまで <code>ThisBuild</code> が受け持ってきた役目を果たすことができる。</li>
1310+
<li><strong>キャッシュ化されたタスク</strong>。全てのタスクはデフォルトで、キャッシュ化されている。詳細は<a href="changes/../concepts/caching.html">キャッシュ</a>参照。</li>
1311+
<li><strong>差分テスト</strong><code>test</code> は、テスト結果をキャッシュする差分テストへと変更された。全テストを走らせたい場合は <code>testFull</code> を使う by <a href="https://github.com/eed3si9n">@eed3si9n</a> in <a href="https://github.com/sbt/sbt/pull/7686">#7686</a></li>
1312+
<li><code>test</code> タスクの形が <code>Unit</code> から <code>TestResult</code> へと変更された by <a href="https://github.com/eed3si9n">@eed3si9n</a> in <a href="https://github.com/sbt/sbt/pull/8181">#8181</a></li>
1313+
<li>以前 <code>URL</code> に型付けされていたデフォルトのセッティングやタスクキー (<code>apiMappings</code>, <code>apiURL</code>, <code>homepage</code>, <code>organizationHomepage</code>, <code>releaseNotesURL</code> など) は <code>URI</code> に変更された in <a href="https://github.com/sbt/sbt/pull/7927">#7927</a></li>
1314+
<li><code>license</code> キーの型が <code>Seq[(String, URL)]</code> から <code>Seq[License]</code> へと変更された in <a href="https://github.com/sbt/sbt/pull/7927">#7927</a></li>
1315+
<li>sbt 2.x プラグインは <code>_sbt2_3</code> という suffix を用いて公開される by <a href="https://github.com/eed3si9n">@eed3si9n</a> in <a href="https://github.com/sbt/sbt/pull/7671">#7671</a></li>
1316+
<li>sbt 2.x は、<code>platform</code> セッティングを追加して、<code>ModuleID</code><code>%%%</code> 演算子を使わなくても、<code>%%</code> 演算子だけで JVM、JS、Native のクロスビルドができるようにした by <a href="https://github.com/eed3si9n">@eed3si9n</a> in <a href="https://github.com/sbt/sbt/pull/6746">#6746</a></li>
1317+
<li><code>useCoursier</code> セッティングを廃止して、Coursier をオプトアウトできないようにした by <a href="https://github.com/eed3si9n">@eed3si9n</a> in <a href="https://github.com/sbt/sbt/pull/7712">#7712</a></li>
13181318
<li><code>Key.Classpath</code> is changed to be an alias of the <code>Seq[Attributed[xsbti.HashedVirtualFileRef]]</code> type, instead of <code>Seq[Attributed[File]]</code>. Similarly, some task keys that used to return <code>File</code> have changed to return <code>HashedVirtualFileRef</code> instead. See <a href="changes/../concepts/caching.html#caching-files">Caching Files</a>.</li>
13191319
<li>In sbt 2.x <code>target</code> defaults to <code>target/out/jvm/scala-3.7.2/&lt;subproject&gt;/</code>, as opposed to <code>&lt;subproject&gt;/target/</code>.</li>
13201320
</ul>
1321-
<h3 id="dropped-dreprecations"><a class="header" href="#dropped-dreprecations">Dropped dreprecations</a></h3>
1321+
<h3 id="勧告どおり廃止された機能"><a class="header" href="#勧告どおり廃止された機能">勧告どおり廃止された機能</a></h3>
13221322
<ul>
13231323
<li>Removed <code>IntegrationTest</code> configuration in <a href="https://github.com/sbt/sbt/pull/8184">#8184</a></li>
13241324
<li>Removed sbt 0.13 style shell syntax in <a href="https://github.com/sbt/sbt/pull/7700">#7700</a></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.

0 commit comments

Comments
 (0)