Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 8 additions & 15 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@
</properties>

<dependencies>
<!-- Deepgram Java SDK -->
<dependency>
<groupId>com.deepgram</groupId>
<artifactId>deepgram-java-sdk</artifactId>
<version>0.2.0</version>
</dependency>

<!-- Javalin web framework (lightweight, built on Jetty) -->
<dependency>
<groupId>io.javalin</groupId>
Expand All @@ -37,14 +44,7 @@
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-toml</artifactId>
<version>2.18.2</version>
</dependency>

<!-- Jackson JSON (also used by Javalin, pinned to same version) -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.18.2</version>
<version>2.18.6</version>
</dependency>

<!-- .env file loading -->
Expand All @@ -67,13 +67,6 @@
<artifactId>kotlin-stdlib</artifactId>
<version>1.9.25</version>
</dependency>

<!-- Jetty WebSocket client for outbound connections to Deepgram -->
<dependency>
<groupId>org.eclipse.jetty.websocket</groupId>
<artifactId>websocket-jetty-client</artifactId>
<version>11.0.24</version>
</dependency>
</dependencies>

<build>
Expand Down
Loading