Skip to content

Latest commit

 

History

History
28 lines (25 loc) · 753 Bytes

README.md

File metadata and controls

28 lines (25 loc) · 753 Bytes

dblp-parser

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

Install

To install the library you need a local maven repository and a current version of gradle. Steps

  1. Checkout of dblp-parser to local repository
  2. navigate to the project folder
  3. execute the install task of gradle, e.g. at the console with gradle install
  4. add to your build.gradle:
    repositories {
       mavenLocal()
    }
    compile group: 'org.dblp', name: 'dblp-parser', version: '0.2.2'