@@ -78,7 +78,12 @@ lazy val count_tokens = (project in file("openai-count-tokens"))
78
78
(commonSettings ++ Seq (definedTestNames in Test := Nil )) *
79
79
)
80
80
.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
+ )
82
87
83
88
lazy val guice = (project in file(" openai-guice" ))
84
89
.settings(commonSettings * )
@@ -87,8 +92,20 @@ lazy val guice = (project in file("openai-guice"))
87
92
88
93
lazy val examples = (project in file(" openai-examples" ))
89
94
.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
+ )
92
109
93
110
// POM settings for Sonatype
94
111
ThisBuild / homepage := Some (
0 commit comments