Post Release 4.7.0 action. Upgraded version and fixed changelog.

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/data-publishing/document-store-lib--mongodb@155072 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Luca Frosini 2017-10-10 12:59:41 +00:00
parent db37a0e80a
commit 2ab6a33d88
3 changed files with 28 additions and 4 deletions

View File

@ -1,6 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE xml>
<ReleaseNotes>
<Changeset component="org.gcube.data-publishing.document-store-lib-mongodb.1-3-0" date="${buildDate}">
<Change></Change>
</Changeset>
<Changeset component="org.gcube.data-publishing.document-store-lib-mongodb.1-2-0" date="2017-10-09">
<Change>Implemented isConnectionActive() added in PersistenceBackend</Change>
</Changeset>
<Changeset component="org.gcube.data-publishing.document-store-lib-mongodb.1-1-1" date="2017-03-16">
<Change>Implemented the new api to close connection (if any) to persistence introduced by document-store-lib.1-5-0</Change>
</Changeset>

16
pom.xml
View File

@ -9,7 +9,7 @@
<groupId>org.gcube.data.publishing</groupId>
<artifactId>document-store-lib-mongodb</artifactId>
<version>1.2.0-SNAPSHOT</version>
<version>1.3.0-SNAPSHOT</version>
<name>Document Store MongoDB</name>
<description>Document Store MongoDB Implementation</description>
@ -24,17 +24,27 @@
<developerConnection>scm:https://svn.d4science.research-infrastructures.eu/gcube/trunk/data-publishing/${project.artifactId}</developerConnection>
<url>https://svn.d4science.research-infrastructures.eu/gcube/trunk/data-publishing/${project.artifactId}</url>
</scm>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.gcube.distribution</groupId>
<artifactId>gcube-bom</artifactId>
<version>LATEST</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.gcube.data.publishing</groupId>
<artifactId>document-store-lib</artifactId>
<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.5</version>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>

View File

@ -271,7 +271,15 @@ public class PersistenceMongoDB extends PersistenceBackend {
return record;
}
@Override
protected void clean() throws Exception {
}
@Override
public boolean isConnectionActive() throws Exception {
return true;
}