Skip to content

Commit

Permalink
Merge pull request #18973 from jhipster/skip_ci-jacoco
Browse files Browse the repository at this point in the history
fix jacoco plugin (and sonar)
  • Loading branch information
DanielFran authored Jun 20, 2022
2 parents 08840a1 + 5520fb0 commit c28458c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions generators/server/templates/pom.xml.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -1328,7 +1328,7 @@
</excludes>
<%_ if (reactive) { _%>
<!-- Fix tests at java 13+ https://github.com/reactor/BlockHound/issues/33 -->
<argLine>${argLine} -XX:+IgnoreUnrecognizedVMOptions -XX:+AllowRedefinitionToAddDeleteMethods</argLine>
<argLine>@{argLine} -XX:+IgnoreUnrecognizedVMOptions -XX:+AllowRedefinitionToAddDeleteMethods</argLine>
<%_ } _%>
</configuration>
</plugin>
Expand Down Expand Up @@ -1703,9 +1703,9 @@
</includes>
<%_ if (reactive) { _%>
<!-- Fix tests at java 13+ https://github.com/reactor/BlockHound/issues/33 -->
<argLine>${argLine} -XX:+IgnoreUnrecognizedVMOptions -XX:+AllowRedefinitionToAddDeleteMethods -Dspring.profiles.active=testdev</argLine>
<argLine>@{argLine} -XX:+IgnoreUnrecognizedVMOptions -XX:+AllowRedefinitionToAddDeleteMethods -Dspring.profiles.active=testdev</argLine>
<%_ } else { _%>
<argLine>${argLine} -Dspring.profiles.active=testdev</argLine>
<argLine>@{argLine} -Dspring.profiles.active=testdev</argLine>
<%_ } _%>
</configuration>
<executions>
Expand Down Expand Up @@ -1889,9 +1889,9 @@
</includes>
<%_ if (reactive) { _%>
<!-- Fix tests at java 13+ https://github.com/reactor/BlockHound/issues/33 -->
<argLine>${argLine} -XX:+IgnoreUnrecognizedVMOptions -XX:+AllowRedefinitionToAddDeleteMethods -Dspring.profiles.active=testprod</argLine>
<argLine>@{argLine} -XX:+IgnoreUnrecognizedVMOptions -XX:+AllowRedefinitionToAddDeleteMethods -Dspring.profiles.active=testprod</argLine>
<%_ } else { _%>
<argLine>${argLine} -Dspring.profiles.active=testprod</argLine>
<argLine>@{argLine} -Dspring.profiles.active=testprod</argLine>
<%_ } _%>
</configuration>
<executions>
Expand Down

0 comments on commit c28458c

Please sign in to comment.