larsga / Duke

Duke is a fast and flexible deduplication engine written in Java
Apache License 2.0
613 stars 194 forks source link

Improve MAVEN build Performance #271

Closed SilverSteven closed 1 year ago

SilverSteven commented 2 years ago

Maven will run all tests in a single forked VM by default. This can be problematic if there are a lot of tests or some very memory-hungry ones. We can fork more test VM by setting <fork>1.5C</fork>.

===================== If there are any inappropriate modifications in this PR, please give me a reply and I will change them.