Added root POM generation to updates command

This commit is contained in:
Erik C. Thauvin 2024-05-09 08:06:54 -07:00
parent 48d7953580
commit 8959a13444
Signed by: erik
GPG key ID: 776702A6A2DA330E

View file

@ -150,6 +150,12 @@ public class MobibotBuild extends Project {
.execute(); .execute();
} }
@Override
public void updates() throws Exception {
super.updates();
rootPom();
}
@BuildCommand(summary = "Copies all needed files to the deploy directory") @BuildCommand(summary = "Copies all needed files to the deploy directory")
public void deploy() throws FileUtilsErrorException { public void deploy() throws FileUtilsErrorException {
var deploy = new File("deploy"); var deploy = new File("deploy");