@@ -28,7 +28,7 @@ lazy val example = project
28
28
.enablePlugins(MdocPlugin )
29
29
.settings(commonSettings)
30
30
.settings(
31
- name := " scala-server-toolkit -example" ,
31
+ name := " sst -example" ,
32
32
publish / skip := true ,
33
33
run / fork := true ,
34
34
Global / cancelable := true ,
@@ -45,7 +45,7 @@ lazy val http4sBlazeClient = project
45
45
.dependsOn(jvmSsl)
46
46
.settings(commonSettings)
47
47
.settings(
48
- name := " scala-server-toolkit -http4s-blaze-client" ,
48
+ name := " sst -http4s-blaze-client" ,
49
49
libraryDependencies += Dependencies .http4sBlazeClient
50
50
)
51
51
@@ -54,7 +54,7 @@ lazy val http4sBlazeServer = project
54
54
.dependsOn(http4sBlazeClient % Test )
55
55
.settings(commonSettings)
56
56
.settings(
57
- name := " scala-server-toolkit -http4s-blaze-server" ,
57
+ name := " sst -http4s-blaze-server" ,
58
58
libraryDependencies ++= Seq (
59
59
Dependencies .http4sBlazeServer,
60
60
Dependencies .http4sDsl,
@@ -66,30 +66,30 @@ lazy val jvmExecution = project
66
66
.in(file(" jvm-execution" ))
67
67
.settings(
68
68
commonSettings,
69
- name := " scala-server-toolkit -jvm-execution" ,
69
+ name := " sst -jvm-execution" ,
70
70
libraryDependencies += Dependencies .slf4jApi
71
71
)
72
72
73
73
lazy val jvmSsl = project
74
74
.in(file(" jvm-ssl" ))
75
75
.settings(
76
76
commonSettings,
77
- name := " scala-server-toolkit -jvm-ssl"
77
+ name := " sst -jvm-ssl"
78
78
)
79
79
80
80
lazy val jvmSystem = project
81
81
.in(file(" jvm-system" ))
82
82
.settings(
83
83
commonSettings,
84
- name := " scala-server-toolkit -jvm-system"
84
+ name := " sst -jvm-system"
85
85
)
86
86
87
87
lazy val pureconfig = project
88
88
.settings(commonSettings)
89
89
.settings(
90
- name := " scala-server-toolkit -pureconfig" ,
90
+ name := " sst -pureconfig" ,
91
91
libraryDependencies += Dependencies .pureConfig
92
92
)
93
93
94
- addCommandAlias(" check" , " ; scalafmtSbtCheck; scalafmtCheckAll; compile:scalafix --check ; test:scalafix --check" )
95
- addCommandAlias(" fix" , " ; scalafmtSbt; scalafmtAll; compile:scalafix ; test:scalafix" )
94
+ addCommandAlias(" check" , " ; scalafmtSbtCheck; scalafmtCheckAll; compile:scalafix --check; test:scalafix --check" )
95
+ addCommandAlias(" fix" , " ; scalafmtSbt; scalafmtAll; compile:scalafix; test:scalafix; example/mdoc " )
0 commit comments