diff --git a/.classpath b/.classpath index 3f8d197..41e8506 100644 --- a/.classpath +++ b/.classpath @@ -30,9 +30,9 @@ - + - + diff --git a/.settings/org.eclipse.jdt.core.prefs b/.settings/org.eclipse.jdt.core.prefs index 43c8195..d9c67f2 100644 --- a/.settings/org.eclipse.jdt.core.prefs +++ b/.settings/org.eclipse.jdt.core.prefs @@ -1,6 +1,6 @@ eclipse.preferences.version=1 org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled -org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 org.eclipse.jdt.core.compiler.compliance=1.7 org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled 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..3150671 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,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). +## [v1.4.0-SNAPSHOT] - 2022-05-25 + +#### Enhancements + +- [#23392] Implemented the "Clone Project" facility + ## [v1.3.0] - 2021-12-03 #### Enhancements diff --git a/pom.xml b/pom.xml index c3ea668..79054bb 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,17 @@ provided + + + org.gcube.application + geoportal-common + [1.0.0,1.0.8-SNAPSHOT) + + org.gcube.application geoportal-client - [1.0.0, 2.0.0-SNAPSHOT) + [1.0.0, 1.0.7-SNAPSHOT) compile @@ -77,6 +84,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..f4d82b6 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,7 @@ public enum ACTION_ON_ITEM { SHOW_METADATA("Show Metadata"), VIEW_REPORT("View the Report"), EDIT_PROJECT("Edit the Project"), + CLONE_PROJECT("Clone the Project"), DELETE_PROJECT("Delete the Project"); String label;