mirror of
https://github.com/hwanny1128/HGZero.git
synced 2025-12-06 19:36:23 +00:00
18 lines
477 B
Groovy
18 lines
477 B
Groovy
bootJar {
|
|
archiveFileName = 'stt.jar'
|
|
}
|
|
|
|
dependencies {
|
|
// Azure Speech SDK
|
|
implementation "com.microsoft.cognitiveservices.speech:client-sdk:${azureSpeechVersion}"
|
|
|
|
// Azure Blob Storage
|
|
implementation "com.azure:azure-storage-blob:${azureBlobVersion}"
|
|
|
|
// Azure Event Hubs
|
|
implementation "com.azure:azure-messaging-eventhubs:${azureEventHubsVersion}"
|
|
|
|
// WebSocket
|
|
implementation 'org.springframework.boot:spring-boot-starter-websocket'
|
|
}
|