Skip to content

Commit 693d3cd

Browse files
committed
Formatting
1 parent a9e057e commit 693d3cd

File tree

1 file changed

+20
-3
lines changed

1 file changed

+20
-3
lines changed

build.sbt

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,12 @@ lazy val count_tokens = (project in file("openai-count-tokens"))
7878
(commonSettings ++ Seq(definedTestNames in Test := Nil)) *
7979
)
8080
.dependsOn(client)
81-
.aggregate(anthropic_client, google_vertexai_client, perplexity_sonar_client, google_gemini_client)
81+
.aggregate(
82+
anthropic_client,
83+
google_vertexai_client,
84+
perplexity_sonar_client,
85+
google_gemini_client
86+
)
8287

8388
lazy val guice = (project in file("openai-guice"))
8489
.settings(commonSettings *)
@@ -87,8 +92,20 @@ lazy val guice = (project in file("openai-guice"))
8792

8893
lazy val examples = (project in file("openai-examples"))
8994
.settings(commonSettings *)
90-
.dependsOn(client_stream, anthropic_client, google_vertexai_client, perplexity_sonar_client, google_gemini_client)
91-
.aggregate(client_stream, anthropic_client, google_vertexai_client, perplexity_sonar_client, google_gemini_client)
95+
.dependsOn(
96+
client_stream,
97+
anthropic_client,
98+
google_vertexai_client,
99+
perplexity_sonar_client,
100+
google_gemini_client
101+
)
102+
.aggregate(
103+
client_stream,
104+
anthropic_client,
105+
google_vertexai_client,
106+
perplexity_sonar_client,
107+
google_gemini_client
108+
)
92109

93110
// POM settings for Sonatype
94111
ThisBuild / homepage := Some(

0 commit comments

Comments
 (0)