Skip to content

Commit b1e725d

Browse files
committed
updated site
1 parent efe515b commit b1e725d

22 files changed

+5363
-5358
lines changed

1.x/sitemap.xml

+5,316-5,316
Large diffs are not rendered by default.

1.x/sitemap.xml.gz

-36 Bytes
Binary file not shown.

2.x/docs/en/guide/build-definition-basics.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -184,13 +184,13 @@ <h3 id="what-is-a-build-definition"><a class="header" href="#what-is-a-build-def
184184
we often call it a <em>subproject</em> in this guide.</p>
185185
<p>For instance, in <code>build.sbt</code> you define
186186
the subproject located in the current directory like this:</p>
187-
<pre><code class="language-scala">scalaVersion := "3.3.1"
187+
<pre><code class="language-scala">scalaVersion := "3.3.3"
188188
name := "Hello"
189189
</code></pre>
190190
<p>or more explicitly:</p>
191191
<pre><code class="language-scala">lazy val root = (project in file("."))
192192
.settings(
193-
scalaVersion := "3.3.1",
193+
scalaVersion := "3.3.3",
194194
name := "Hello",
195195
)
196196
</code></pre>
@@ -235,7 +235,7 @@ <h3 id="vals-and-lazy-vals"><a class="header" href="#vals-and-lazy-vals"><code>v
235235
val toolkit = "org.scala-lang" %% "toolkit" % toolkitV
236236
val toolkitTest = "org.scala-lang" %% "toolkit-test" % toolkitV
237237

238-
scalaVersion := "3.3.1"
238+
scalaVersion := "3.3.3"
239239
libraryDependencies += toolkit
240240
libraryDependencies += (toolkitTest % Test)
241241
</code></pre>

2.x/docs/en/guide/library-dependency-basics.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ <h2 id="tracking-dependencies-in-one-place"><a class="header" href="#tracking-de
227227
To make it easier to use the <code>val</code>s defined in it, import <code>Dependencies.*</code> in your build.sbt file.</p>
228228
<pre><code class="language-scala">import Dependencies.*
229229

230-
scalaVersion := "3.3.1"
230+
scalaVersion := "3.3.3"
231231
name := "something"
232232
libraryDependencies += toolkit
233233
libraryDependencies += toolkitTest % Test

2.x/docs/en/guide/multi-project-basics.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ <h1 id="multi-project-basics"><a class="header" href="#multi-project-basics">Mul
183183
other project.</p>
184184
<p>A project is defined by declaring a lazy val of type
185185
<a href="../../api/sbt/Project.html">Project</a>. For example, :</p>
186-
<pre><code class="language-scala">scalaVersion := "3.3.1"
186+
<pre><code class="language-scala">scalaVersion := "3.3.3"
187187

188188
lazy val core = (project in file("core"))
189189
.settings(

2.x/docs/en/guide/sbt-components.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ <h3 id="coursier"><a class="header" href="#coursier">Coursier</a></h3>
196196
<h3 id="zinc"><a class="header" href="#zinc">Zinc</a></h3>
197197
<p>Zinc is the incremental compiler for Scala, developed and maintained by sbt project.
198198
An often overlooked aspect of Zinc is that Zinc provides a stable API to invoke <strong>any modern versions</strong> of Scala compiler. Combined with the fact that Coursier can resolve any Scala version, with sbt we can invoke any modern versions of Scala just by writing a single line <code>build.sbt</code>:</p>
199-
<pre><code class="language-scala">scalaVersion := "3.3.1"
199+
<pre><code class="language-scala">scalaVersion := "3.3.3"
200200
</code></pre>
201201
<h3 id="bsp-server"><a class="header" href="#bsp-server">BSP server</a></h3>
202202
<p>The sbt server supports <a href="https://build-server-protocol.github.io/">Build Server Protocol (BSP)</a> to list build targets, build them, etc.

2.x/docs/en/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ <h1 id="the-book-of-sbt-draft"><a class="header" href="#the-book-of-sbt-draft">T
196196
integrates with IDEs like IntelliJ and VS Code,
197197
makes JAR packages, and publishes them to <a href="https://central.sonatype.com/">Maven Central</a>,
198198
JVM community's package registry.</p>
199-
<pre><code class="language-scala">scalaVersion := "3.3.1"
199+
<pre><code class="language-scala">scalaVersion := "3.3.3"
200200
</code></pre>
201201
<p>You just need one line of <code>build.sbt</code> to get started with Scala.</p>
202202

2.x/docs/en/print.html

+11-11
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ <h1 id="the-book-of-sbt-draft"><a class="header" href="#the-book-of-sbt-draft">T
197197
integrates with IDEs like IntelliJ and VS Code,
198198
makes JAR packages, and publishes them to <a href="https://central.sonatype.com/">Maven Central</a>,
199199
JVM community's package registry.</p>
200-
<pre><code class="language-scala">scalaVersion := "3.3.1"
200+
<pre><code class="language-scala">scalaVersion := "3.3.3"
201201
</code></pre>
202202
<p>You just need one line of <code>build.sbt</code> to get started with Scala.</p>
203203
<div style="break-before: page; page-break-before: always;"></div><h1 id="installing-sbt-runner"><a class="header" href="#installing-sbt-runner">Installing sbt runner</a></h1>
@@ -557,17 +557,17 @@ <h3 id="set-the-version"><a class="header" href="#set-the-version">Set the versi
557557
<p>Change <code>build.sbt</code> as follows:</p>
558558
<p>@@snip <a href="$root$/src/sbt-test/ref/example-weather/changes/build3.sbt">example-weather-build3</a> {}</p>
559559
<h3 id="switch-scalaversion-temporarily"><a class="header" href="#switch-scalaversion-temporarily">Switch scalaVersion temporarily</a></h3>
560-
<pre><code>sbt:Hello&gt; ++3.3.1!
561-
[info] Forcing Scala version to 3.3.1 on all projects.
560+
<pre><code>sbt:Hello&gt; ++3.3.3!
561+
[info] Forcing Scala version to 3.3.3 on all projects.
562562
[info] Reapplying settings...
563563
[info] Set current project to Hello (in build file:/tmp/foo-build/)
564564
</code></pre>
565565
<p>Check the <code>scalaVersion</code> setting:</p>
566566
<pre><code>sbt:Hello&gt; scalaVersion
567567
[info] helloCore / scalaVersion
568-
[info] 3.3.1
568+
[info] 3.3.3
569569
[info] scalaVersion
570-
[info] 3.3.1
570+
[info] 3.3.3
571571
</code></pre>
572572
<p>This setting will go away after <code>reload</code>.</p>
573573
<h3 id="inspect-the-dist-task"><a class="header" href="#inspect-the-dist-task">Inspect the dist task</a></h3>
@@ -760,7 +760,7 @@ <h3 id="coursier"><a class="header" href="#coursier">Coursier</a></h3>
760760
<h3 id="zinc"><a class="header" href="#zinc">Zinc</a></h3>
761761
<p>Zinc is the incremental compiler for Scala, developed and maintained by sbt project.
762762
An often overlooked aspect of Zinc is that Zinc provides a stable API to invoke <strong>any modern versions</strong> of Scala compiler. Combined with the fact that Coursier can resolve any Scala version, with sbt we can invoke any modern versions of Scala just by writing a single line <code>build.sbt</code>:</p>
763-
<pre><code class="language-scala">scalaVersion := "3.3.1"
763+
<pre><code class="language-scala">scalaVersion := "3.3.3"
764764
</code></pre>
765765
<h3 id="bsp-server"><a class="header" href="#bsp-server">BSP server</a></h3>
766766
<p>The sbt server supports <a href="https://build-server-protocol.github.io/">Build Server Protocol (BSP)</a> to list build targets, build them, etc.
@@ -944,13 +944,13 @@ <h3 id="what-is-a-build-definition"><a class="header" href="#what-is-a-build-def
944944
we often call it a <em>subproject</em> in this guide.</p>
945945
<p>For instance, in <code>build.sbt</code> you define
946946
the subproject located in the current directory like this:</p>
947-
<pre><code class="language-scala">scalaVersion := "3.3.1"
947+
<pre><code class="language-scala">scalaVersion := "3.3.3"
948948
name := "Hello"
949949
</code></pre>
950950
<p>or more explicitly:</p>
951951
<pre><code class="language-scala">lazy val root = (project in file("."))
952952
.settings(
953-
scalaVersion := "3.3.1",
953+
scalaVersion := "3.3.3",
954954
name := "Hello",
955955
)
956956
</code></pre>
@@ -995,7 +995,7 @@ <h3 id="vals-and-lazy-vals"><a class="header" href="#vals-and-lazy-vals"><code>v
995995
val toolkit = "org.scala-lang" %% "toolkit" % toolkitV
996996
val toolkitTest = "org.scala-lang" %% "toolkit-test" % toolkitV
997997

998-
scalaVersion := "3.3.1"
998+
scalaVersion := "3.3.3"
999999
libraryDependencies += toolkit
10001000
libraryDependencies += (toolkitTest % Test)
10011001
</code></pre>
@@ -1079,7 +1079,7 @@ <h2 id="tracking-dependencies-in-one-place"><a class="header" href="#tracking-de
10791079
To make it easier to use the <code>val</code>s defined in it, import <code>Dependencies.*</code> in your build.sbt file.</p>
10801080
<pre><code class="language-scala">import Dependencies.*
10811081

1082-
scalaVersion := "3.3.1"
1082+
scalaVersion := "3.3.3"
10831083
name := "something"
10841084
libraryDependencies += toolkit
10851085
libraryDependencies += toolkitTest % Test
@@ -1107,7 +1107,7 @@ <h2 id="viewing-library-dependencies"><a class="header" href="#viewing-library-d
11071107
other project.</p>
11081108
<p>A project is defined by declaring a lazy val of type
11091109
<a href="guide/../../api/sbt/Project.html">Project</a>. For example, :</p>
1110-
<pre><code class="language-scala">scalaVersion := "3.3.1"
1110+
<pre><code class="language-scala">scalaVersion := "3.3.3"
11111111

11121112
lazy val core = (project in file("core"))
11131113
.settings(

2.x/docs/en/sbt-by-example.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -499,17 +499,17 @@ <h3 id="set-the-version"><a class="header" href="#set-the-version">Set the versi
499499
<p>Change <code>build.sbt</code> as follows:</p>
500500
<p>@@snip <a href="$root$/src/sbt-test/ref/example-weather/changes/build3.sbt">example-weather-build3</a> {}</p>
501501
<h3 id="switch-scalaversion-temporarily"><a class="header" href="#switch-scalaversion-temporarily">Switch scalaVersion temporarily</a></h3>
502-
<pre><code>sbt:Hello&gt; ++3.3.1!
503-
[info] Forcing Scala version to 3.3.1 on all projects.
502+
<pre><code>sbt:Hello&gt; ++3.3.3!
503+
[info] Forcing Scala version to 3.3.3 on all projects.
504504
[info] Reapplying settings...
505505
[info] Set current project to Hello (in build file:/tmp/foo-build/)
506506
</code></pre>
507507
<p>Check the <code>scalaVersion</code> setting:</p>
508508
<pre><code>sbt:Hello&gt; scalaVersion
509509
[info] helloCore / scalaVersion
510-
[info] 3.3.1
510+
[info] 3.3.3
511511
[info] scalaVersion
512-
[info] 3.3.1
512+
[info] 3.3.3
513513
</code></pre>
514514
<p>This setting will go away after <code>reload</code>.</p>
515515
<h3 id="inspect-the-dist-task"><a class="header" href="#inspect-the-dist-task">Inspect the dist task</a></h3>

2.x/docs/en/searchindex.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

2.x/docs/en/searchindex.json

+1-1
Large diffs are not rendered by default.

404.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="UTF-8">
55
<meta name="generator" content="Docusaurus v3.1.0">
66
<title data-rh="true">404: Page not found | sbt</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://www.scala-sbt.org/img/docusaurus-social-card.jpg"><meta data-rh="true" name="twitter:image" content="https://www.scala-sbt.org/img/docusaurus-social-card.jpg"><meta data-rh="true" property="og:url" content="https://www.scala-sbt.org/404.html"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docusaurus_tag" content="default"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docsearch:docusaurus_tag" content="default"><meta data-rh="true" property="og:title" content="404: Page not found | sbt"><meta data-rh="true" name="description" content="Sorry we couldn&#x27;t find that page"><meta data-rh="true" property="og:description" content="Sorry we couldn&#x27;t find that page"><link data-rh="true" rel="icon" href="/assets/favicon.ico"><link data-rh="true" rel="canonical" href="https://www.scala-sbt.org/404.html"><link data-rh="true" rel="alternate" href="https://www.scala-sbt.org/404.html" hreflang="en"><link data-rh="true" rel="alternate" href="https://www.scala-sbt.org/404.html" hreflang="x-default"><link data-rh="true" rel="preconnect" href="https://U55AU5GMCN-dsn.algolia.net" crossorigin="anonymous"><link rel="search" type="application/opensearchdescription+xml" title="sbt" href="/opensearch.xml"><link rel="stylesheet" href="/assets/css/styles.dd0658e4.css">
7-
<script src="/assets/js/runtime~main.3070aaf7.js" defer="defer"></script>
7+
<script src="/assets/js/runtime~main.fa63ff0f.js" defer="defer"></script>
88
<script src="/assets/js/main.5d012fed.js" defer="defer"></script>
99
</head>
1010
<body class="navigation-with-keyboard">

assets/js/0284318d.a584db78.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/js/c4f5d8e4.761d1bc5.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)