Merge pull request 'task_24567' (#7) from task_24567 into master

Reviewed-on: #7
This commit is contained in:
Francesco Mangiacrapa 2023-03-07 11:04:06 +01:00
commit dc1a0146e5
3 changed files with 10 additions and 3 deletions

View File

@ -4,6 +4,12 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [v2.0.3-SNAPSHOT] - 2023-02-09
#### Enhancements
- [#24569] Added the phase DRAFT in the enum (also required for #24571)
## [v2.0.2] - 2022-02-03 ## [v2.0.2] - 2022-02-03
#### Enhancements #### Enhancements

View File

@ -10,7 +10,7 @@
<groupId>org.gcube.application</groupId> <groupId>org.gcube.application</groupId>
<artifactId>geoportal-data-common</artifactId> <artifactId>geoportal-data-common</artifactId>
<version>2.0.2</version> <version>2.0.3-SNAPSHOT</version>
<description>GeoPortal Data Common is common library used by GUI components developed for GeoNA</description> <description>GeoPortal Data Common is common library used by GUI components developed for GeoNA</description>
<scm> <scm>
@ -41,7 +41,7 @@
<dependency> <dependency>
<groupId>org.gcube.distribution</groupId> <groupId>org.gcube.distribution</groupId>
<artifactId>gcube-bom</artifactId> <artifactId>gcube-bom</artifactId>
<version>2.0.2</version> <version>2.2.0-SNAPSHOT</version>
<type>pom</type> <type>pom</type>
<scope>import</scope> <scope>import</scope>
</dependency> </dependency>

View File

@ -9,7 +9,8 @@ package org.gcube.application.geoportalcommon.shared.geoportal;
*/ */
public enum WORKFLOW_PHASE { public enum WORKFLOW_PHASE {
PUBLISHED("Published"); //Should be always the last one PUBLISHED("Published"), //Should be always the last one
DRAFT("Draft");
private String label; private String label;