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