fixed osgi dependency issue, removed deprecated types
This commit is contained in:
@@ -1,17 +0,0 @@
|
||||
package org.springframework.persistence.graph;
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
/**
|
||||
* Annotation to denote an object that should be transparently persisted
|
||||
* using Neo4j.
|
||||
* @author Rod Johnson
|
||||
*
|
||||
*/
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Target(ElementType.TYPE)
|
||||
public @interface GraphEntity {
|
||||
Type value() default Type.NODE;
|
||||
}
|
||||
@@ -1,6 +0,0 @@
|
||||
/**
|
||||
*
|
||||
*/
|
||||
package org.springframework.persistence.graph;
|
||||
|
||||
public enum Type { NODE, RELATIONSHIP }
|
||||
@@ -12,7 +12,7 @@ Import-Template:
|
||||
org.springframework.data.core.*;version="[1.0.0, 2.0.0)",
|
||||
org.springframework.datastore.core.*;version="[1.0.0, 2.0.0)",
|
||||
org.springframework.datastore.persistence.*;version="[1.0.0, 2.0.0)",
|
||||
org.neo4j.*;version="[1.1.0, 2.0.0)",
|
||||
org.neo4j.*;version="0",
|
||||
org.aspectj.*;version="[1.6.5, 2.0.0)",
|
||||
org.apache.commons.logging.*;version="[1.1.1, 2.0.0)"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user