readme
This commit is contained in:
parent
a7d3a0b9e7
commit
866c6154f3
2 changed files with 10 additions and 4 deletions
10
README.md
Normal file
10
README.md
Normal 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
|
||||||
|
|
@ -13,10 +13,6 @@ pub struct Pom {
|
||||||
pub(crate) dependency_management: Vec<Dependency>,
|
pub(crate) dependency_management: Vec<Dependency>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Pom {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(PartialEq, Debug)]
|
#[derive(PartialEq, Debug)]
|
||||||
pub struct License {
|
pub struct License {
|
||||||
pub(crate) name: String,
|
pub(crate) name: String,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue