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-couchdb@155071 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Luca Frosini 2017-10-10 12:58:03 +00:00
parent 199e443da2
commit 06403ae543
3 changed files with 29 additions and 3 deletions

View File

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

16
pom.xml
View File

@ -8,7 +8,7 @@
</parent> </parent>
<groupId>org.gcube.data.publishing</groupId> <groupId>org.gcube.data.publishing</groupId>
<artifactId>document-store-lib-couchdb</artifactId> <artifactId>document-store-lib-couchdb</artifactId>
<version>1.2.0-SNAPSHOT</version> <version>1.3.0-SNAPSHOT</version>
<name>Document Store CouchDB Connector</name> <name>Document Store CouchDB Connector</name>
<description>Document Store Connector for CouchDB</description> <description>Document Store Connector for CouchDB</description>
@ -23,12 +23,23 @@
<developerConnection>scm:https://svn.d4science.research-infrastructures.eu/gcube/trunk/data-publishing/${project.artifactId}</developerConnection> <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> <url>https://svn.d4science.research-infrastructures.eu/gcube/trunk/data-publishing/${project.artifactId}</url>
</scm> </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> <dependencies>
<dependency> <dependency>
<groupId>org.gcube.data.publishing</groupId> <groupId>org.gcube.data.publishing</groupId>
<artifactId>document-store-lib</artifactId> <artifactId>document-store-lib</artifactId>
<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.codehaus.jackson</groupId> <groupId>org.codehaus.jackson</groupId>
@ -38,7 +49,6 @@
<dependency> <dependency>
<groupId>org.slf4j</groupId> <groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId> <artifactId>slf4j-api</artifactId>
<version>1.7.5</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.gcube.common</groupId> <groupId>org.gcube.common</groupId>

View File

@ -83,4 +83,14 @@ public class PersistenceCouchDB extends PersistenceBackend {
return record; return record;
} }
@Override
protected void clean() throws Exception {
}
@Override
public boolean isConnectionActive() throws Exception {
return true;
}
} }