Skip to content

Commit da88650

Browse files
authored
Merge pull request #468 from digital-preservation/use-64-bit-jre-in-distribution-package
Modifications to bundle 64 bit JRE so users can more heap memory
2 parents 6dd9f98 + 52728b6 commit da88650

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

csv-validator-distribution/assembly-windows-with-jre.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
1212
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
1313
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
14-
<id>bin-win32-with-jre</id>
14+
<id>bin-win64-with-jre</id>
1515
<formats>
1616
<format>zip</format>
1717
</formats>

csv-validator-distribution/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<goal>wget</goal>
2424
</goals>
2525
<configuration>
26-
<url>https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.21%2B9/OpenJDK11U-jre_x86-32_windows_hotspot_11.0.21_9.zip</url>
26+
<url>https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.21%2B9/OpenJDK11U-jre_x64_windows_hotspot_11.0.21_9.zip</url>
2727
<unpack>false</unpack>
2828
<outputDirectory>${project.build.directory}</outputDirectory>
2929
</configuration>
@@ -43,7 +43,7 @@
4343
</goals>
4444
<configuration>
4545
<target>
46-
<unzip dest="${project.build.directory}/jre_tmp/" src="${project.build.directory}/OpenJDK11U-jre_x86-32_windows_hotspot_11.0.21_9.zip" />
46+
<unzip dest="${project.build.directory}/jre_tmp/" src="${project.build.directory}/OpenJDK11U-jre_x64_windows_hotspot_11.0.21_9.zip" />
4747
<move todir="${project.build.directory}/jre-windows/">
4848
<fileset dir="${project.build.directory}/jre_tmp/jdk-11.0.21+9-jre/">
4949
<include name="**/*" />

0 commit comments

Comments
 (0)