diff --git a/snyx.xml b/pom.xml similarity index 100% rename from snyx.xml rename to pom.xml diff --git a/src/bld/java/net/thauvin/erik/MobibotBuild.java b/src/bld/java/net/thauvin/erik/MobibotBuild.java index 1f72ddf..6f4e7cc 100644 --- a/src/bld/java/net/thauvin/erik/MobibotBuild.java +++ b/src/bld/java/net/thauvin/erik/MobibotBuild.java @@ -194,9 +194,9 @@ public class MobibotBuild extends Project { .execute(); } - @BuildCommand(value = "snyk-pom", summary = "Generates the Snyk POM") - public void snykPom() throws FileUtilsErrorException { + @BuildCommand(value = "root-pom", summary = "Generates the POM file in the root directory") + public void rootPom() throws FileUtilsErrorException { PomBuilder.generateInto(publishOperation().info(), publishOperation().dependencies(), - Path.of(workDirectory.getPath(), "snyx.xml").toFile()); + Path.of(workDirectory.getPath(), "pom.xml").toFile()); } }