You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sh "sed -i 's@<hibernate-orm.version>.*</hibernate-orm.version>@<hibernate-orm.version>${env.HIBERNATE_VERSION}</hibernate-orm.version>@' bom/application/pom.xml"
39
-
sh './mvnw -Dquickly install'
40
-
sh './mvnw -pl :quarkus-hibernate-orm -amd -pl "!integration-tests/kafka-oauth-keycloak" verify -Dstart-containers -Dtest-containers'
35
+
// Need to override the default maven configuration this way, because there is no other way to do it
36
+
sh "sed -i 's/-Xmx5g/-Xmx1920m/' ./.mvn/jvm.config"
37
+
sh "echo -e '\\n-XX:MaxMetaspaceSize=768m'>>./.mvn/jvm.config"
38
+
sh "./mvnw -Dquickly install"
39
+
// Need to kill the gradle daemons started during the Maven install run
40
+
sh "pkill -f '.*GradleDaemon.*' || true"
41
+
// Need to override the default maven configuration this way, because there is no other way to do it
42
+
sh "sed -i 's/-Xmx1920m/-Xmx1372m/' ./.mvn/jvm.config"
43
+
sh "sed -i 's/MaxMetaspaceSize=768m/MaxMetaspaceSize=512m/' ./.mvn/jvm.config"
0 commit comments