Changed rootPom() to pomRoot()

This commit is contained in:
Erik C. Thauvin 2024-06-07 12:16:10 -07:00
parent 2d0167e5e9
commit 91e19d325e
Signed by: erik
GPG key ID: 776702A6A2DA330E

View file

@ -143,16 +143,16 @@ public class HttpStatusBuild extends Project {
@Override @Override
public void publish() throws Exception { public void publish() throws Exception {
super.publish(); super.publish();
rootPom(); pomRoot();
} }
@Override @Override
public void publishLocal() throws Exception { public void publishLocal() throws Exception {
super.publishLocal(); super.publishLocal();
rootPom(); pomRoot();
} }
private void rootPom() throws FileUtilsErrorException { private void pomRoot() throws FileUtilsErrorException {
PomBuilder.generateInto(publishOperation().info(), dependencies(), PomBuilder.generateInto(publishOperation().info(), dependencies(),
Path.of(workDirectory.getPath(), "pom.xml").toFile()); Path.of(workDirectory.getPath(), "pom.xml").toFile());
} }