forked from prestodb/presto
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add local Maven configuration using .mvn/
- Adding extension for the Takari Smart Builder which provides better parallelization of the build - Adding extension for concurrent local repository access which is required when using the Smart Builder - Add configuration to enable the Smart Builder and use 8 threads - Add configuration to set the JVM -Xmx option - Add .mvn/timing.properties to .gitignore
- Loading branch information
Showing
4 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,3 +21,4 @@ benchmark_outputs | |
*.class | ||
.checkstyle | ||
*-local.yaml | ||
.mvn/timing.properties |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<extensions> | ||
<extension> | ||
<groupId>io.takari.maven</groupId> | ||
<artifactId>takari-smart-builder</artifactId> | ||
<version>0.4.0</version> | ||
</extension> | ||
<extension> | ||
<groupId>io.takari.aether</groupId> | ||
<artifactId>takari-concurrent-localrepo</artifactId> | ||
<version>0.0.7</version> | ||
</extension> | ||
</extensions> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
-Xmx8192m |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
-T 8 | ||
--builder smart |