Skip to content

Commit

Permalink
feat: Oracle transcription (#541)
Browse files Browse the repository at this point in the history
* Oracle ts service POC

* Apply checkstyle

* debugging

* Update Oracle SDK dependencies

* Import fixes

* Add principal auth, style check, cleanup

* Remove ban, oracle-common-sdk will not work without

* Wildcard imports, license headers, time-based UUID

* Address review comments

* Fix imports, again

* Fix log message

* Oracle dependencies, better log message
  • Loading branch information
rpurdel authored Aug 13, 2024
1 parent 7a3211b commit 9953c9a
Show file tree
Hide file tree
Showing 9 changed files with 778 additions and 10 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ dist
.idea/*
jigasi-home/
jigasi.iml
.DS_Store

target
13 changes: 12 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
<!-- Match jicoco's jetty version. -->
<jicoco.version>1.1-140-g8f45a9f</jicoco.version>
<jetty.version>11.0.20</jetty.version>
<oci-sdk.version>3.45.0</oci-sdk.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -426,6 +427,16 @@
<version>${jicoco.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.oracle.oci.sdk</groupId>
<artifactId>oci-java-sdk-shaded-full</artifactId>
<version>${oci-sdk.version}</version>
</dependency>
<dependency>
<groupId>com.oracle.oci.sdk</groupId>
<artifactId>oci-java-sdk-aispeech</artifactId>
<version>${oci-sdk.version}</version>
</dependency>
</dependencies>

<build>
Expand Down Expand Up @@ -456,7 +467,7 @@
<bannedDependencies>
<excludes>
<exclude>org.bouncycastle:bc*-jdk15on*</exclude>
<exclude>org.bouncycastle:bc*-jdk15to18</exclude>
<!-- <exclude>org.bouncycastle:bc*-jdk15to18</exclude>-->
</excludes>
</bannedDependencies>
</rules>
Expand Down
Loading

0 comments on commit 9953c9a

Please sign in to comment.