From 8959a134446990833ae2b2b90488be4c7090d4bc Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Thu, 9 May 2024 08:06:54 -0700 Subject: [PATCH] Added root POM generation to updates command --- src/bld/java/net/thauvin/erik/MobibotBuild.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/bld/java/net/thauvin/erik/MobibotBuild.java b/src/bld/java/net/thauvin/erik/MobibotBuild.java index 0cc441e..ddc0b75 100644 --- a/src/bld/java/net/thauvin/erik/MobibotBuild.java +++ b/src/bld/java/net/thauvin/erik/MobibotBuild.java @@ -150,6 +150,12 @@ public class MobibotBuild extends Project { .execute(); } + @Override + public void updates() throws Exception { + super.updates(); + rootPom(); + } + @BuildCommand(summary = "Copies all needed files to the deploy directory") public void deploy() throws FileUtilsErrorException { var deploy = new File("deploy");