Skip to content

Commit

Permalink
Change lombok version
Browse files Browse the repository at this point in the history
  • Loading branch information
cristinamghita committed Nov 28, 2023
1 parent a968f26 commit 225641b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions misc/parent-pom/pom.xml
Expand Up @@ -194,7 +194,7 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.18</version>
<version>1.18.24</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -437,8 +437,9 @@
<!-- Jacoco prepare-agent builds some command-line params without which jacoco will not instrument.
Hence it is important to add those command-line params where @{argLine} holds those params.
Note that the @ is not a typo.
See https://www.jacoco.org/jacoco/trunk/doc/prepare-agent-mojo.html and https://maven.apache.org/surefire/maven-surefire-plugin/test-mojo.html#argLine -->
<argLine>@{argLine} -Xms256m -Xmx2048m</argLine>
See https://www.jacoco.org/jacoco/trunk/doc/prepare-agent-mojo.html and https://maven.apache.org/surefire/maven-surefire-plugin/test-mojo.html#argLine
Also see https://stackoverflow.com/questions/70756414/java-lang-reflect-inaccessibleobjectexception-unable-to-make-field-private-fina -->
<argLine>@{argLine} -Xms256m -Xmx2048m --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.lang=ALL-UNNAMED</argLine>
<!-- From http://www.jacoco.org/jacoco/trunk/doc/maven.html :
When using the maven-surefire-plugin or maven-failsafe-plugin you must not use a forkCount of 0
or set the forkMode to never as this would prevent the execution of the tests with the javaagent set and no coverage would be recorded.
Expand Down

0 comments on commit 225641b

Please sign in to comment.