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
Here,`libraryDependencies`is a set of dependencies, and by using `+=`,
92
-
we're adding the [scala-parser-combinators](https://github.com/scala/scala-parser-combinators) dependency to the set of dependencies that sbt will go
93
-
and fetch when it starts up. Now, in any Scala file, you can import classes,
94
-
objects, etc, from `scala-parser-combinators`with a regular import.
89
+
Здесь`libraryDependencies`представляет набор зависимостей,
90
+
и с помощью `+=` мы добавляем зависимость [scala-parser-combinators](https://github.com/scala/scala-parser-combinators)
91
+
к набору зависимостей, которые sbt будет загружать при запуске.
92
+
Теперь в любом файле Scala можно импортировать классы, объекты и т.д. из `scala-parser-combinators`с помощью обычного импорта.
95
93
96
-
You can find more published libraries on
97
-
[Scaladex](https://index.scala-lang.org/), the Scala library index, where you
98
-
can also copy the above dependency information for pasting into your `build.sbt`
99
-
file.
94
+
Вы можете найти больше опубликованных библиотек на [Scaladex](https://index.scala-lang.org/), каталоге библиотек Scala,
95
+
где вы также можете скопировать указанную выше информацию о зависимостях для вставки в свой файл `build.sbt`.
100
96
101
-
> **Note for Java Libraries:**For a regular Java library, you should only use one percent (`%`) between the
102
-
> organization name and artifact name. Double percent (`%%`) is a specialisation for Scala libraries.
103
-
> You can learn more about the reason for this in the [sbt documentation][sbt-docs-lib-dependencies].
97
+
> **Примечание для Java библиотек:**Для обычной библиотеки Java следует использовать только один знак процента (`%`)
98
+
> между названием организации и именем артефакта. Двойной процент (`%%`) — это специализация Scala библиотек.
99
+
> Подробнее об этом можно узнать в [документации sbt][sbt-docs-lib-dependencies].
104
100
105
-
## Next steps
101
+
## Следующие шаги
106
102
107
-
Continue to the next tutorial in the _getting started with sbt_series, and learn about [testing Scala code with sbt in the command line](testing-scala-with-sbt-on-the-command-line.html).
103
+
Перейдите к следующему учебнику из серии _getting started with sbt_и узнайте, как [тестировать Scala c sbt и ScalaTest в командной строке](testing-scala-with-sbt-on-the-command-line.html).
108
104
109
-
**or**
105
+
**или**
110
106
111
-
-Continue learning Scala interactively online on
107
+
-Продолжайте изучать Scala в интерактивном режиме на
0 commit comments