This commit is contained in:
Shautvast 2025-07-23 23:01:45 +02:00
parent a7d3a0b9e7
commit 866c6154f3
2 changed files with 10 additions and 4 deletions

10
README.md Normal file
View file

@ -0,0 +1,10 @@
currently implementing in rust:
* a sax parser to read xml files (and existing xml binding in rust has trouble reading maven properties)
* a dom parser to get a generic xml representation
* a pom reader to get a maven specific representation
* to find out what dependencies you have
Why rust and not a maven plugin?
* faster
* more challenges
* run it in docker as a separate step

View file

@ -13,10 +13,6 @@ pub struct Pom {
pub(crate) dependency_management: Vec<Dependency>,
}
impl Pom {
}
#[derive(PartialEq, Debug)]
pub struct License {
pub(crate) name: String,