libcvrapi/README.md

32 lines
775 B
Markdown
Raw Normal View History

2019-08-16 10:59:42 +00:00
# libcvrapi
2019-08-17 17:53:11 +00:00
-----------------------------------
A Java library to query with the Danish VAT API service <https://www.cvrapi.dk>. Work in progress.
## Usage
CvrApi api = new CvrApi("My user agent", "mySecretToken");
Company company = api.getCompanyByVatNumber("57020415");
System.out.println(company.life.name);
The *Company* represents most of the same properties as seen in the example JSON in the [api documentation](http://docs.rest.cvrapi.dk/).
### Gradle
repositories {
2019-08-19 18:58:01 +00:00
maven { url 'https://dl.bintray.com/mnellemann/libs' }
2019-08-17 17:53:11 +00:00
}
dependencies {
2019-08-19 18:58:01 +00:00
compile 'biz.nellemann.libs:libcvrapi:1.+'
runtime "org.slf4j:slf4j-simple:1.7.28"
2019-08-17 17:53:11 +00:00
}
## Development
To build and test the code:
./gradle build
./gradle test