Module editor

Source
Expand description

Pom Editor

§What is a Pom Editor?

A pom editor is a struct that allows you to edit and create pom files.

§What is the difference between a PomEditor and a crate::pom::Pom?

crate::pom::Pom is a struct that represents the data in a pom file. If you were to use it to edit a pom file. The data could be lost due How XML works with Serde

PomEditor uses the crate edit-xml to parse the xml into a dom like structure. This allows for easy editing of the xml file. Without losing any data or original structure.

Structs§

BuildEditor
Allows for editing the build section of a pom file
DependencyManagementEditor
DistributionManagementEditor
Allows for editing the Distribution Management section of a pom file
PomEditor
A struct that allows editing and creating pom files A pom file is an xml file that follows the maven pom schema