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"
44
+
// Need to override the default maven configuration this way, because there is no other way to do it
45
+
sh "sed -i 's/-Xmx5g/-Xmx2048m/' ./.mvn/jvm.config"
46
+
sh "echo -e '\\n-XX:MaxMetaspaceSize=768m'>>./.mvn/jvm.config"
47
+
sh "./mvnw -pl !docs -Dquickly install"
48
+
// Need to kill the gradle daemons started during the Maven install run
49
+
sh "sudo pkill -f '.*GradleDaemon.*' || true"
50
+
// Need to override the default maven configuration this way, because there is no other way to do it
51
+
sh "sed -i 's/-Xmx2048m/-Xmx1340m/' ./.mvn/jvm.config"
52
+
sh "sed -i 's/MaxMetaspaceSize=768m/MaxMetaspaceSize=512m/' ./.mvn/jvm.config"
0 commit comments