aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorAnton Rybochkin <anton.rybochkin@axibase.com>2024-01-10 22:26:00 +0100
committerGitHub <noreply@github.com>2024-01-10 22:26:00 +0100
commitad7a6ec57357df7af33a4049c88c5a5c1f022e81 (patch)
tree277a7a4be00cd1fe1e5e511accf13a563a72e57e /pom.xml
parent1589210038a3ca04915851a22424c638d18eb444 (diff)
Initial solution by raipc
* Initial solution by raipc * Implemented custom hash map with open addressing * Small optimizations to task splitting and range check disabling * Fixed off-by-one error in merge * Run with EpsilonGC. Borrowed VM params from Shipilev * Make script executable * Add a license
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml2
1 files changed, 2 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index a74c588..7c1b590 100644
--- a/pom.xml
+++ b/pom.xml
@@ -111,6 +111,8 @@
<compilerArg>--enable-preview</compilerArg>
<compilerArg>--add-modules</compilerArg>
<compilerArg>java.base,jdk.incubator.vector</compilerArg>
+ <compilerArg>--add-opens=java.base/java.lang=ALL-UNNAMED</compilerArg>
+ <compilerArg>--add-opens=java.base/jdk.internal.util=ALL-UNNAMED</compilerArg>
</compilerArgs>
</configuration>
</plugin>