mirror of
https://github.com/vacp2p/linea-besu.git
synced 2026-01-09 21:17:54 -05:00
Splitting Bonsai code: This commit aims to divide Bonsai into two packages - Common Classes with a Prefix: The common part will include classes prefixed with "DiffBased." These classes are designed to provide a base for both Bonsai and any future storage format that might use this diff-based approach. - Bonsai's Specifics: Bonsai will retain its unique features in its own package. This means that while it shares the diff-based infrastructure with the common part, it also has its own specific functionalities that are not shared with other storage format. - Extension to Verkle: this modification add the possibility of adding "Verkle" as a new storage format based on the diff-based architecture. Like Bonsai, Verkle would use the common diff-based classes but also have its own specific features. --------- Signed-off-by: Karim TAAM <karim.t2am@gmail.com> Signed-off-by: Karim Taam <karim.t2am@gmail.com>
16 lines
1011 B
Properties
16 lines
1011 B
Properties
org.gradle.welcome=never
|
|
# Set exports/opens flags required by Google Java Format and ErrorProne plugins. (JEP-396)
|
|
org.gradle.jvmargs=-Xmx4g \
|
|
--add-exports jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED \
|
|
--add-exports jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED \
|
|
--add-exports jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED \
|
|
--add-exports jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED \
|
|
--add-exports jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED \
|
|
--add-exports jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED \
|
|
--add-exports jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED \
|
|
--add-exports jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED \
|
|
--add-opens jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED \
|
|
--add-opens jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED \
|
|
--add-opens jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED
|
|
# Could be moved to sonar properties after https://sonarsource.atlassian.net/browse/SONARGRADL-134
|
|
systemProp.sonar.gradle.skipCompile=true |