Skip to content

Commit

Permalink
Fix SSLHandshakeFailure in Google TTS connector
Browse files Browse the repository at this point in the history
  • Loading branch information
bertfrees committed Nov 22, 2023
1 parent f69a3fb commit cfea898
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 42 deletions.
7 changes: 7 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Changes in release v1.14.16
===========================

## Modules

- **FIX** Connection issue in Google TTS adapter

Changes in release v1.14.15
===========================

Expand Down
56 changes: 14 additions & 42 deletions build-jre.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,17 @@
<noHeaderFiles>true</noHeaderFiles>
<noManPages>true</noManPages>
<compress>1</compress>
<addModules>
<addModule>java.base</addModule>
<addModule>java.desktop</addModule>
<addModule>java.instrument</addModule>
<addModule>java.security.jgss</addModule>
<addModule>java.sql</addModule>
<addModule>java.xml</addModule>
<addModule>jdk.management.agent</addModule>
<addModule>jdk.zipfs</addModule>
<addModule>jdk.crypto.ec</addModule>
</addModules>
</configuration>
</plugin>
</plugins>
Expand All @@ -45,18 +56,6 @@
</goals>
<configuration>
<classifier>linux</classifier>
<addModules>
<addModule>java.base</addModule>
<addModule>java.desktop</addModule>
<addModule>java.instrument</addModule>
<addModule>java.security.jgss</addModule>
<addModule>java.scripting</addModule> <!-- for gui -->
<addModule>java.sql</addModule>
<addModule>java.xml</addModule>
<addModule>jdk.management.agent</addModule>
<addModule>jdk.unsupported</addModule> <!-- for gui -->
<addModule>jdk.zipfs</addModule>
</addModules>
<modulePaths>
<modulePath>src/main/jre/OpenJDK17U-jdk_x64_linux_hotspot_17.0.7_7/jdk-17.0.7+7/jmods</modulePath>
</modulePaths>
Expand All @@ -81,18 +80,6 @@
<id>default-cli</id> <!-- run directly from Makefile -->
<configuration>
<classifier>mac</classifier>
<addModules>
<addModule>java.base</addModule>
<addModule>java.desktop</addModule>
<addModule>java.instrument</addModule>
<addModule>java.security.jgss</addModule>
<addModule>java.scripting</addModule> <!-- for gui -->
<addModule>java.sql</addModule>
<addModule>java.xml</addModule>
<addModule>jdk.management.agent</addModule>
<addModule>jdk.unsupported</addModule> <!-- for gui -->
<addModule>jdk.zipfs</addModule>
</addModules>
<modulePaths>
<modulePath>src/main/jre/OpenJDK17U-jdk_x64_mac_hotspot_17.0.7_7/jdk-17.0.7+7/Contents/Home/jmods</modulePath>
</modulePaths>
Expand All @@ -117,15 +104,6 @@
<id>default-cli</id> <!-- run directly from Makefile -->
<configuration>
<classifier>win32</classifier>
<addModules>
<addModule>java.base</addModule>
<addModule>java.desktop</addModule>
<addModule>java.instrument</addModule>
<addModule>java.sql</addModule>
<addModule>java.xml</addModule>
<addModule>jdk.management.agent</addModule>
<addModule>jdk.zipfs</addModule>
</addModules>
<modulePaths>
<modulePath>src/main/jre/OpenJDK17U-jdk_x86-32_windows_hotspot_17.0.7_7/jdk-17.0.7+7/jmods</modulePath>
</modulePaths>
Expand All @@ -138,6 +116,9 @@
</profile>
<profile>
<id>build-jre-win64</id>
<!--
this profile needs to be run with JDK 17
-->
<build>
<plugins>
<plugin>
Expand All @@ -147,15 +128,6 @@
<id>default-cli</id> <!-- run directly from Makefile -->
<configuration>
<classifier>win64</classifier>
<addModules>
<addModule>java.base</addModule>
<addModule>java.desktop</addModule>
<addModule>java.instrument</addModule>
<addModule>java.sql</addModule>
<addModule>java.xml</addModule>
<addModule>jdk.management.agent</addModule>
<addModule>jdk.zipfs</addModule>
</addModules>
<modulePaths>
<modulePath>src/main/jre/OpenJDK17U-jdk_x64_windows_hotspot_17.0.7_7/jdk-17.0.7+7/jmods</modulePath>
</modulePaths>
Expand Down

0 comments on commit cfea898

Please sign in to comment.