Skip to content

spliffone/maven-pom-crawler

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Maven POM Crawler

Library to retrieve Maven POM information including there referenced dependencies.

Usage

CloseableHttpAsyncClient httpclient = HttpAsyncClients.createDefault();
httpclient.start();
Crawler crawler = new Crawler(new MavenDownloaderImpl(httpclient));
List<Pom> result = crawler.crawl(MavenId
    .builder()
    .groupId("org.springframework.boot")
    .artifactId("spring-boot")
    .version("2.6.6")
    .build());

About

Library to retrieve Maven POM information including there referenced dependencies.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published