Skip to content

Commit 65fe592

Browse files
Merge pull request #149 from jjelliott/master
Fix SSL error
2 parents 34195c1 + a8b94bb commit 65fe592

File tree

5 files changed

+4
-3951
lines changed

5 files changed

+4
-3951
lines changed

build.gradle

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ plugins {
77
id 'edu.sc.seis.launch4j' version '2.5.0'
88
}
99

10-
sourceCompatibility = JavaVersion.VERSION_1_8
11-
targetCompatibility = JavaVersion.VERSION_1_8
1210
version = "git describe --tags".execute().text.trim()
1311
repositories {
1412
mavenCentral()
@@ -59,7 +57,7 @@ task downloadJre {
5957
def f = new File("$buildDir/jre.zip")
6058
f.parentFile.mkdir()
6159
if (!f.exists()) {
62-
new URL('https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u292-b10_openj9-0.26.0/OpenJDK8U-jre_x86-32_windows_openj9_8u292b10_openj9-0.26.0.zip').withInputStream {i -> f.withOutputStream {it << i}}
60+
new URL('https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.10%2B7/OpenJDK17U-jdk_x86-32_windows_hotspot_17.0.10_7.zip').withInputStream {i -> f.withOutputStream {it << i}}
6361
}
6462

6563
copy {
@@ -79,7 +77,7 @@ task setupWinDist(type: Copy) {
7977
doLast {
8078
copy {
8179
file("$buildDir/jre").eachDir {
82-
if (it.name.contains("jre")) {
80+
if (it.name.contains("jdk")) {
8381
jreDir = it
8482
}
8583
}
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
#Fri Apr 12 17:48:37 EDT 2024
12
distributionBase=GRADLE_USER_HOME
23
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
45
zipStoreBase=GRADLE_USER_HOME
56
zipStorePath=wrapper/dists

src/main/java/de/haukerehfeld/quakeinjector/CABundleLoader.java

Lines changed: 0 additions & 74 deletions
This file was deleted.

src/main/java/de/haukerehfeld/quakeinjector/QuakeInjector.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -909,12 +909,6 @@ public boolean enginePathNotSetDialogue() {
909909

910910

911911
public static void main(String[] args) {
912-
try {
913-
CABundleLoader.loadCertificateAuthorities();
914-
} catch (Exception e) {
915-
e.printStackTrace();
916-
}
917-
918912
try {
919913
// Set System L&F
920914
javax.swing.UIManager.setLookAndFeel(

0 commit comments

Comments
 (0)