A simple library to parse DBLP data.
Simply extend the DblpElementProcessor and include the necessary logic for your operations in the process Method. This Library provides POJOs for all relevant elements:
- Article
- Incollection
- Proceedings
- Inproceedings
- Book
- Website
- MastersThesis
- PhDThesis
To install the library you need a local maven repository and a current version of gradle. Steps
- Checkout of dblp-parser to local repository
- navigate to the project folder
- execute the install task of gradle, e.g. at the console with
gradle install
- add to your build.gradle:
repositories { mavenLocal() } compile group: 'org.dblp', name: 'dblp-parser', version: '0.2.2'