My 1billion row challenge solutions in various languages

Use enable-preview via compiler argument option in the maven-compiler-plugin because IntelliJ does not recognize the configuration option

Changed files
+6 -1
+6 -1
pom.xml
···
<artifactId>maven-compiler-plugin</artifactId>
<version>3.12.1</version>
<configuration>
-
<enablePreview>true</enablePreview>
<parameters>true</parameters>
<compilerArgs>
+
<!--
+
IntelliJ does not yet support the enablePreview configuration option.
+
Therefore, we use a compiler argument.
+
See https://youtrack.jetbrains.com/issue/IDEA-296303
+
-->
+
<compilerArg>--enable-preview</compilerArg>
<compilerArg>--add-modules</compilerArg>
<compilerArg>java.base,jdk.incubator.vector</compilerArg>
</compilerArgs>