2017-12-24 05:48:32 +01:00
|
|
|
Introduction to the OrientDB Java APIs
|
|
|
|
|
======================================
|
|
|
|
|
|
|
|
|
|
This is a simple maven project that shows how to do OrientDB operations using the Java API.
|
|
|
|
|
|
|
|
|
|
### Requirements
|
|
|
|
|
|
|
|
|
|
- Maven
|
|
|
|
|
- Java 7 or higher
|
|
|
|
|
- OrientDB
|
|
|
|
|
|
2017-12-26 18:14:48 +01:00
|
|
|
### Build
|
2017-12-24 05:48:32 +01:00
|
|
|
|
|
|
|
|
To build and start the server simply type
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
$ mvn clean install
|
|
|
|
|
```
|
|
|
|
|
|
2017-12-26 18:14:48 +01:00
|
|
|
### Tests
|
2017-12-24 05:48:32 +01:00
|
|
|
|
2017-12-26 18:14:48 +01:00
|
|
|
To run unit tests
|
2017-12-24 05:48:32 +01:00
|
|
|
|
|
|
|
|
```bash
|
2017-12-26 18:14:48 +01:00
|
|
|
$ mvn test
|
|
|
|
|
```
|