task_24567 #7

Merged
francesco.mangiacrapa merged 3 commits from task_24567 into master 2023-03-07 11:04:06 +01:00
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.
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
#### Enhancements

View File

@ -10,7 +10,7 @@
<groupId>org.gcube.application</groupId>
<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>
<scm>
@ -41,7 +41,7 @@
<dependency>
<groupId>org.gcube.distribution</groupId>
<artifactId>gcube-bom</artifactId>
<version>2.0.2</version>
<version>2.2.0-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>

View File

@ -9,7 +9,8 @@ package org.gcube.application.geoportalcommon.shared.geoportal;
*/
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;