Skip to content

Commit

Permalink
0.6-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
rinoto committed Jul 31, 2016
1 parent 8a4baea commit e7952ce
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 13 deletions.
2 changes: 1 addition & 1 deletion migramongo-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.github.rinoto.mongo</groupId>
<artifactId>migramongo-parent</artifactId>
<version>0.5</version>
<version>0.6-SNAPSHOT</version>
</parent>
<artifactId>migramongo-core</artifactId>
<packaging>jar</packaging>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -290,10 +290,6 @@ public void destroyLocks() {
lockService.destroyLock();
}

public MigrationHistoryService getMigrationHistoryService() {
return migrationHistoryService;
}

private <T extends Object> List<T> toList(Iterable<T> iterable) {
return StreamSupport.stream(iterable.spliterator(), false).collect(Collectors.toList());
}
Expand Down
2 changes: 1 addition & 1 deletion migramongo-spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.github.rinoto.mongo</groupId>
<artifactId>migramongo-parent</artifactId>
<version>0.5</version>
<version>0.6-SNAPSHOT</version>
</parent>
<artifactId>migramongo-spring</artifactId>
<packaging>jar</packaging>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
import com.rinoto.migramongo.EmbeddedMongo;
import com.rinoto.migramongo.MigraMongo;
import com.rinoto.migramongo.dao.LockService;
import com.rinoto.migramongo.dao.MigrationHistoryService;
import com.rinoto.migramongo.dao.MongoLockService;
import com.rinoto.migramongo.spring.jmx.MigraMongoJMX;

Expand All @@ -42,11 +41,6 @@ public MongoDatabase mongoDatabase() throws Exception {
return mongoClient.getDatabase(MIGRAMONGO_TEST_DB);
}

@Bean
public MigrationHistoryService migrationHistoryService() throws Exception {
return migraMongo().getMigrationHistoryService();
}

@Bean
public LockService lockService() throws Exception {
return new MongoLockService(mongoDatabase());
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.github.rinoto.mongo</groupId>
<artifactId>migramongo-parent</artifactId>
<packaging>pom</packaging>
<version>0.5</version>
<version>0.6-SNAPSHOT</version>
<name>migramongo</name>
<description>Tool for migrating mongodb scripts in Spring</description>
<url>https://github.com/rinoto/migramongo</url>
Expand Down

0 comments on commit e7952ce

Please sign in to comment.