File tree Expand file tree Collapse file tree 6 files changed +28
-2
lines changed
scala/com/baeldung/scala/os Expand file tree Collapse file tree 6 files changed +28
-2
lines changed Original file line number Diff line number Diff line change @@ -284,6 +284,17 @@ lazy val scala_libraries_3 = (project in file("scala-libraries-3"))
284
284
libraryDependencies += " com.lihaoyi" %% " os-lib" % " 0.8.1"
285
285
)
286
286
287
+ lazy val scala_libraries_os = (project in file(" scala-libraries-os" ))
288
+ .settings(
289
+ name := " scala-libraries" ,
290
+ libraryDependencies += " org.scalatest" %% " scalatest" % " 3.1.2" % Test ,
291
+ libraryDependencies ++= Seq (
292
+ " org.apache.logging.log4j" %% " log4j-api-scala" % " 12.0" ,
293
+ " org.apache.logging.log4j" % " log4j-core" % " 2.13.0" % Runtime
294
+ ),
295
+ libraryDependencies += " com.lihaoyi" %% " os-lib" % " 0.8.1"
296
+ )
297
+
287
298
lazy val scala_libraries_4 = (project in file(" scala-libraries-4" ))
288
299
.settings(
289
300
name := " scala-libraries-4" ,
Original file line number Diff line number Diff line change 9
9
- [ A Guide to the Scala Retry Library] ( https://www.baeldung.com/scala/retry-library )
10
10
- [ Introduction to Lightbend Config] ( https://www.baeldung.com/scala/lightbend-config )
11
11
- [ Introduction to Apache Log4j in Scala] ( https://www.baeldung.com/scala/apache-log4j )
12
- - [ Introduction to Tapir] ( https://www.baeldung.com/scala/tapir )
13
- - [ How to Execute OS Commands in Scala Using os-lib] ( https://www.baeldung.com/scala/os-lib )
12
+ - [ Introduction to Tapir] ( https://www.baeldung.com/scala/tapir )
Original file line number Diff line number Diff line change
1
+ ### Relevant Articles:
2
+
3
+ - [ How to Execute OS Commands in Scala Using os-lib] ( https://www.baeldung.com/scala/os-lib )
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <Configuration status =" WARN" >
3
+ <Appenders >
4
+ <Console name =" Console" target =" SYSTEM_OUT" >
5
+ <PatternLayout pattern =" %d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n" />
6
+ </Console >
7
+ </Appenders >
8
+ <Loggers >
9
+ <Root level =" info" >
10
+ <AppenderRef ref =" Console" />
11
+ </Root >
12
+ </Loggers >
13
+ </Configuration >
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments