Skip to content

Commit

Permalink
Updated to use 64 bit JRE (#1058)
Browse files Browse the repository at this point in the history
  • Loading branch information
sparkhi authored Jan 22, 2024
1 parent 3c0ed56 commit d9adfcb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ You will need JAVA 8 to 11 installed to run it.
Once unpacked, use the `droid.sh` or `droid.bat` script to run the application.

### Windows users
Archive `droid-binary-${VERSION}-bin-win32-with-jre.zip`
Archive `droid-binary-${VERSION}-bin-win64-with-jre.zip`

For Windows users who might not be able to install JAVA, the provided bundle includes JAVA 11.

Expand Down
2 changes: 1 addition & 1 deletion droid-binary/assembly-windows-with-jre.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
<id>bin-win32-with-jre</id>
<id>bin-win64-with-jre</id>
<formats>
<format>zip</format>
</formats>
Expand Down
8 changes: 4 additions & 4 deletions droid-binary/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
<goal>wget</goal>
</goals>
<configuration>
<!-- To update, retrieve link for windows jdk on x86 architecture from https://adoptium.net -->
<url>https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.18%2B10/OpenJDK11U-jre_x86-32_windows_hotspot_11.0.18_10.zip</url>
<!-- To update, retrieve link for 64 bit Windows jre from https://adoptium.net -->
<url>https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.22%2B7/OpenJDK11U-jre_x64_windows_hotspot_11.0.22_7.zip</url>
<unpack>false</unpack>
<outputDirectory>${project.build.directory}</outputDirectory>
</configuration>
Expand All @@ -55,9 +55,9 @@
<configuration>
<target>
<!-- Update binary from https://adoptopenjdk.net/releases.html -->
<unzip dest="${project.build.directory}/jre_tmp/" src="${project.build.directory}/OpenJDK11U-jre_x86-32_windows_hotspot_11.0.18_10.zip" />
<unzip dest="${project.build.directory}/jre_tmp/" src="${project.build.directory}/OpenJDK11U-jre_x64_windows_hotspot_11.0.22_7.zip" />
<move todir="${project.build.directory}/jre-windows/">
<fileset dir="${project.build.directory}/jre_tmp/jdk-11.0.18+10-jre/">
<fileset dir="${project.build.directory}/jre_tmp/jdk-11.0.22+7-jre/">
<include name="**/*" />
</fileset>
</move>
Expand Down

0 comments on commit d9adfcb

Please sign in to comment.