Skip to content
This repository has been archived by the owner on Jul 6, 2023. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
vidakovic committed Dec 20, 2014
1 parent 2e51988 commit 3a64bec
Show file tree
Hide file tree
Showing 143 changed files with 7,880 additions and 2,857 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,8 @@ target
.project
.classpath
/.gradle/
.idea
*.iml
*.ipr
*.iws
atlassian-ide-plugin.xml
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
jdk:
- openjdk7
- oraclejdk7
language: java

after_success:
- mvn clean test cobertura:cobertura coveralls:report
23 changes: 23 additions & 0 deletions MIGRATION.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Migration Notes

- deprecated everything in spring-data-orientdb-commons/src/main/java/com/springframework/data/orientdb/object/repository;
this is object related stuff and should live in it's own module
- spring-data-orientdb-commons/pom.xml contains dependency to orientdb-object; as soon as refactoring is done remove this
- moved the following classes from "orm" to "core":

> AbstractOrientDatabaseFactory
> OrientDocumentDatabaseFactory
> OrientObjectDatabaseFactory
> OrientTransaction
> OrientTransactionManager
- AbstractOrientDatabaseFactory<T>.doCreatePool() should be void, because ODatabaseDocumentPool is deprecated (no common
interface for all pools available); let the implementation classes do this without the parent; the properties are
available anyway and the parent just set's the pool size
- using JUnit (instead of TestNG), because I had the configuration at hand and there was an exception with the latest
TestNG version 6.8.8; also has added value that no need to extend a TestNG base class; static import of Assert, shorter
code
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
Spring Data OrientDB
====================

The primary goal of the [Spring Data](http://www.springsource.org/spring-data) project is to make it easier to build Spring-powered applications that use new data access technologies such as non-relational databases, map-reduce frameworks, and cloud based data services.
The primary goal of the [Spring Data](http://projects.spring.io/) project is to make it easier to build Spring-powered applications that use new data access technologies such as non-relational databases, map-reduce frameworks, and cloud based data services.

The SpringData OrientDB project will implement easy to use APIs for using OrientDB as a Document database and as a Graph database.

The document module is based on the [Spring Data MongoDB](https://github.com/SpringSource/spring-data-mongodb) project.
The document module is based on the [Spring Data MongoDB](http://projects.spring.io/spring-data-mongodb/) project.

[![Build Status](https://drone.io/github.com/vidakovic/spring-data-orientdb/status.png)](https://drone.io/github.com/vidakovic/spring-data-orientdb/latest)
Loading

0 comments on commit 3a64bec

Please sign in to comment.