File tree Expand file tree Collapse file tree 14 files changed +32
-144
lines changed
spring-data-document-core
spring-data-document-parent
spring-data-mongodb-cross-store/src
main/java/org/springframework/data/persistence/document
java/org/springframework/data/document/persistence/test
resources/META-INF/spring Expand file tree Collapse file tree 14 files changed +32
-144
lines changed Original file line number Diff line number Diff line change 9
9
<packaging >pom</packaging >
10
10
<modules >
11
11
<module >spring-data-document-parent</module >
12
- <module >spring-data-document-core</module >
13
12
<module >spring-data-mongodb</module >
14
13
<module >spring-data-mongodb-cross-store</module >
15
14
<module >spring-data-mongodb-log4j</module >
Original file line number Diff line number Diff line change 66
66
67
67
<!-- Spring Data -->
68
68
<dependency >
69
- <groupId >org.springframework.data</groupId >
70
- <artifactId >spring-data-document-core</artifactId >
69
+ <groupId >org.springframework.data</groupId >
70
+ <artifactId >spring-data-commons-core</artifactId >
71
+ </dependency >
72
+
73
+ <!-- Dependencies for web analytics functionality - to me moved into spring framework -->
74
+ <dependency >
75
+ <groupId >javax.servlet</groupId >
76
+ <artifactId >servlet-api</artifactId >
77
+ <version >2.5</version >
78
+ <scope >provided</scope >
79
+ </dependency >
80
+ <dependency >
81
+ <groupId >org.springframework</groupId >
82
+ <artifactId >spring-core</artifactId >
83
+ <version >${org.springframework.version} </version >
84
+ </dependency >
85
+ <dependency >
86
+ <groupId >org.springframework</groupId >
87
+ <artifactId >spring-web</artifactId >
88
+ <version >${org.springframework.version} </version >
89
+ </dependency >
90
+ <dependency >
91
+ <groupId >org.springframework</groupId >
92
+ <artifactId >spring-webmvc</artifactId >
93
+ <version >${org.springframework.version} </version >
71
94
</dependency >
72
95
73
96
<!-- Jackson JSON -->
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 142
142
<artifactId >spring-data-commons-aspects</artifactId >
143
143
<version >${data.commons.version} </version >
144
144
</dependency >
145
- <dependency >
146
- <groupId >org.springframework.data</groupId >
147
- <artifactId >spring-data-document-core</artifactId >
148
- <version >${project.version} </version >
149
- </dependency >
150
145
<dependency >
151
146
<groupId >org.springframework.data</groupId >
152
147
<artifactId >spring-data-couchdb</artifactId >
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
- package org .springframework .data .document . annotation ;
17
+ package org .springframework .data .persistence . document ;
18
18
19
19
import java .lang .annotation .ElementType ;
20
20
import java .lang .annotation .Retention ;
Original file line number Diff line number Diff line change 1
- package org .springframework .data .persistence .document .mongo ;
1
+ package org .springframework .data .persistence .document .mongodb ;
2
2
3
3
import javax .persistence .EntityManagerFactory ;
4
4
Original file line number Diff line number Diff line change 1
- package org.springframework.data.persistence.document.mongo ;
1
+ package org.springframework.data.persistence.document.mongodb ;
2
2
3
3
import java.lang.reflect.Field ;
4
- import java.util.Map ;
5
4
6
5
import javax.persistence.EntityManager ;
7
6
import javax.persistence.Transient ;
@@ -13,12 +12,11 @@ import org.aspectj.lang.JoinPoint;
13
12
import org.aspectj.lang.reflect.FieldSignature ;
14
13
15
14
import org.springframework.dao.DataAccessException ;
16
- import org.springframework.data.document.annotation .RelatedDocument ;
15
+ import org.springframework.data.persistence.document .RelatedDocument ;
17
16
18
17
import org.springframework.data.persistence.document.DocumentBacked ;
19
18
import org.springframework.data.persistence.document.DocumentBackedTransactionSynchronization ;
20
19
import org.springframework.data.persistence.ChangeSet ;
21
- import org.springframework.data.persistence.ChangeSetBacked ;
22
20
import org.springframework.data.persistence.ChangeSetPersister ;
23
21
import org.springframework.data.persistence.ChangeSetPersister.NotFoundException ;
24
22
import org.springframework.data.persistence.HashMapChangeSet ;
Original file line number Diff line number Diff line change 3
3
import javax .persistence .Entity ;
4
4
import javax .persistence .Id ;
5
5
6
- import org .springframework .data .document . annotation .RelatedDocument ;
6
+ import org .springframework .data .persistence . document .RelatedDocument ;
7
7
8
8
@ Entity
9
9
public class Person {
Original file line number Diff line number Diff line change 38
38
<bean class =" org.springframework.data.document.mongodb.MongoExceptionTranslator" />
39
39
40
40
<!-- Mongo aspect config -->
41
- <bean class =" org.springframework.data.persistence.document.mongo .MongoDocumentBacking"
41
+ <bean class =" org.springframework.data.persistence.document.mongodb .MongoDocumentBacking"
42
42
factory-method =" aspectOf" >
43
43
<property name =" changeSetPersister" ref =" mongoChangeSetPersister" />
44
44
</bean >
45
45
<bean id =" mongoChangeSetPersister"
46
- class =" org.springframework.data.persistence.document.mongo .MongoChangeSetPersister" >
46
+ class =" org.springframework.data.persistence.document.mongodb .MongoChangeSetPersister" >
47
47
<property name =" mongoTemplate" ref =" mongoTemplate" />
48
48
<property name =" entityManagerFactory" ref =" entityManagerFactory" />
49
49
</bean >
Original file line number Diff line number Diff line change 35
35
</dependency >
36
36
37
37
<!-- Spring Data -->
38
- <dependency >
39
- <groupId >org.springframework.data</groupId >
40
- <artifactId >spring-data-document-core</artifactId >
41
- <version >${project.version} </version >
42
- </dependency >
43
38
<dependency >
44
39
<groupId >org.springframework.data</groupId >
45
40
<artifactId >spring-data-commons-core</artifactId >
Original file line number Diff line number Diff line change 42
42
<moduleSet >
43
43
<!-- adds module jars to the distribution archive under the 'dist' directory -->
44
44
<includes >
45
- <include >org.springframework.data:spring-data-document-core</include >
46
45
<include >org.springframework.data:spring-data-mongodb</include >
47
46
<include >org.springframework.data:spring-data-mongodb-cross-store</include >
48
47
<include >org.springframework.data:spring-data-mongodb-log4j</include >
Original file line number Diff line number Diff line change @@ -236,10 +236,6 @@ DEBUG [document.mongodb.MongoTemplate]: Dropped collection [database.person]</pr
236
236
<para >spring-data-commons-core-1.1.0.M1.jar</para >
237
237
</listitem >
238
238
239
- <listitem >
240
- <para >spring-data-document-core-1.0.0.M3.jar</para >
241
- </listitem >
242
-
243
239
<listitem >
244
240
<para >spring-data-mongodb-1.0.0.M3.jar</para >
245
241
</listitem >
You can’t perform that action at this time.
0 commit comments