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
public void publish() throws Exception {
super.publish();
rootPom();
pomRoot();
}
@Override
public void publishLocal() throws Exception {
super.publishLocal();
rootPom();
pomRoot();
}
private void rootPom() throws FileUtilsErrorException {
private void pomRoot() throws FileUtilsErrorException {
PomBuilder.generateInto(publishOperation().info(), dependencies(),
Path.of(workDirectory.getPath(), "pom.xml").toFile());
}