Merge branch 'feature/20225'

This commit is contained in:
Luca Frosini 2021-04-14 14:59:34 +02:00
commit 0d223b7a0f
3 changed files with 8 additions and 5 deletions

View File

@ -2,6 +2,10 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
# Changelog for gCube Catalogue (gCat) API
## [v2.0.0-SNAPSHOT]
- Changed service class
## [v1.2.2]
- Added count method for Item collection [#20627]

View File

@ -7,15 +7,14 @@
<artifactId>maven-parent</artifactId>
<version>1.1.0</version>
</parent>
<groupId>org.gcube.data-publishing</groupId>
<groupId>org.gcube.data-catalogue</groupId>
<artifactId>gcat-api</artifactId>
<version>1.2.2</version>
<version>2.0.0-SNAPSHOT</version>
<name>gCube Catalogue (gCat) API</name>
<description>gCube Catalogue (gCat) API is a library containing classes shared across gcat* components</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<serviceClass>DataPublishing</serviceClass>
<serviceClass>data-catalogue</serviceClass>
</properties>
<scm>
<connection>scm:git:https://code-repo.d4science.org/gCubeSystem/${project.artifactId}.git</connection>

View File

@ -2,7 +2,7 @@ package org.gcube.gcat.api;
public class GCatConstants {
public static final String SERVICE_CLASS = "DataPublishing";
public static final String SERVICE_CLASS = "data-catalogue";
public static final String SERVICE_NAME = "gcat";
public static final String SERVICE_ENTRY_NAME = "org.gcube.gcat.ResourceInitializer";