diff --git a/.settings/org.eclipse.wst.common.project.facet.core.xml b/.settings/org.eclipse.wst.common.project.facet.core.xml index 1b22d70..4f92af5 100644 --- a/.settings/org.eclipse.wst.common.project.facet.core.xml +++ b/.settings/org.eclipse.wst.common.project.facet.core.xml @@ -1,5 +1,5 @@ - + diff --git a/CHANGELOG.md b/CHANGELOG.md index 180c73a..063f2ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ 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). +## [v1.4.0-SNAPSHOT] - 2022-05-25 + +#### Enhancements + +- [#23392] Implemented the "Clone Project" facility +- [#23457] Implemented the "Publish/UnPublish Project" facility + ## [v1.3.0] - 2021-12-03 #### Enhancements diff --git a/pom.xml b/pom.xml index c3ea668..96216e0 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ org.gcube.application geoportal-data-common - 1.3.0 + 1.4.0-SNAPSHOT GeoPortal Data Common is common library used by GUI components developed for GeoNA @@ -65,10 +65,11 @@ provided + org.gcube.application geoportal-client - [1.0.0, 2.0.0-SNAPSHOT) + [1.0.0, 1.0.7] compile @@ -77,6 +78,8 @@ + + org.gcube.portlets.user diff --git a/src/main/java/org/gcube/application/geoportalcommon/shared/config/ACTION_ON_ITEM.java b/src/main/java/org/gcube/application/geoportalcommon/shared/config/ACTION_ON_ITEM.java index 7d4562d..f35b446 100644 --- a/src/main/java/org/gcube/application/geoportalcommon/shared/config/ACTION_ON_ITEM.java +++ b/src/main/java/org/gcube/application/geoportalcommon/shared/config/ACTION_ON_ITEM.java @@ -14,6 +14,8 @@ public enum ACTION_ON_ITEM { SHOW_METADATA("Show Metadata"), VIEW_REPORT("View the Report"), EDIT_PROJECT("Edit the Project"), + CLONE_PROJECT("Clone the Project"), + PUBLISH_UNPUBLISH_PROJECT("Publish/UnPublish the Project"), DELETE_PROJECT("Delete the Project"); String label; diff --git a/src/test/java/org/gcube/application/TestGNACommon.java b/src/test/java/org/gcube/application/TestGNACommon.java index 9664dff..0302b0e 100644 --- a/src/test/java/org/gcube/application/TestGNACommon.java +++ b/src/test/java/org/gcube/application/TestGNACommon.java @@ -92,7 +92,7 @@ public class TestGNACommon { } - // @Test + //@Test public void readGNDataEntryConfigsFromIS() throws Exception { Thread thread = new Thread() {