DATADOC-297 - Pruned irrelevant sub modules.

Removed CouchDB module as well as the generic document one. Renamed document-parent into mongodb-parent. Adapted poms accordingly.
This commit is contained in:
Oliver Gierke
2011-10-13 20:27:03 +02:00
parent 7ce1e5fbd3
commit cfcf839232
39 changed files with 17 additions and 1859 deletions

View File

@@ -4,13 +4,12 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-document-parent</artifactId>
<artifactId>spring-data-mongodb-parent</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<relativePath>../spring-data-document-parent/pom.xml</relativePath>
<relativePath>../spring-data-mongodb-parent/pom.xml</relativePath>
</parent>
<artifactId>spring-data-mongodb</artifactId>
<packaging>jar</packaging>
<name>Spring Data MongoDB Support</name>
<name>Spring Data MongoDB</name>
<properties>
<mongo.version>2.6.5</mongo.version>

View File

@@ -45,7 +45,6 @@ public abstract class AbstractMongoEventListener<E> implements ApplicationListen
*/
public void onApplicationEvent(MongoMappingEvent<?> event) {
// Invoke domain type independent events
if (event instanceof AfterLoadEvent) {
AfterLoadEvent<?> afterLoadEvent = (AfterLoadEvent<?>) event;