Skip to content

Commit

Permalink
Modifications to bundle 64 bit JRE so users can more heap memory
Browse files Browse the repository at this point in the history
  • Loading branch information
sparkhi committed Dec 1, 2023
1 parent 6dd9f98 commit 52728b6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion csv-validator-distribution/assembly-windows-with-jre.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,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
4 changes: 2 additions & 2 deletions csv-validator-distribution/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<goal>wget</goal>
</goals>
<configuration>
<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>
<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>
<unpack>false</unpack>
<outputDirectory>${project.build.directory}</outputDirectory>
</configuration>
Expand All @@ -43,7 +43,7 @@
</goals>
<configuration>
<target>
<unzip dest="${project.build.directory}/jre_tmp/" src="${project.build.directory}/OpenJDK11U-jre_x86-32_windows_hotspot_11.0.21_9.zip" />
<unzip dest="${project.build.directory}/jre_tmp/" src="${project.build.directory}/OpenJDK11U-jre_x64_windows_hotspot_11.0.21_9.zip" />
<move todir="${project.build.directory}/jre-windows/">
<fileset dir="${project.build.directory}/jre_tmp/jdk-11.0.21+9-jre/">
<include name="**/*" />
Expand Down

0 comments on commit 52728b6

Please sign in to comment.