feature_23390 #4
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<faceted-project>
|
<faceted-project>
|
||||||
<installed facet="java" version="1.7"/>
|
|
||||||
<installed facet="jst.utility" version="1.0"/>
|
<installed facet="jst.utility" version="1.0"/>
|
||||||
|
<installed facet="java" version="1.7"/>
|
||||||
</faceted-project>
|
</faceted-project>
|
||||||
|
|
|
@ -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).
|
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
|
## [v1.3.0] - 2021-12-03
|
||||||
|
|
||||||
#### Enhancements
|
#### Enhancements
|
||||||
|
|
7
pom.xml
7
pom.xml
|
@ -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>1.3.0</version>
|
<version>1.4.0-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>
|
||||||
|
@ -65,10 +65,11 @@
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<!-- FORCING THESE DEPENDENCIES IN ORDER TO USE THE "OLD" CONCESSIONI CLIENT/MODEL -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.gcube.application</groupId>
|
<groupId>org.gcube.application</groupId>
|
||||||
<artifactId>geoportal-client</artifactId>
|
<artifactId>geoportal-client</artifactId>
|
||||||
<version>[1.0.0, 2.0.0-SNAPSHOT)</version>
|
<version>[1.0.0, 1.0.7]</version>
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
<exclusions>
|
<exclusions>
|
||||||
<exclusion>
|
<exclusion>
|
||||||
|
@ -78,6 +79,8 @@
|
||||||
</exclusions>
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<!-- END FORCING -->
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.gcube.portlets.user</groupId>
|
<groupId>org.gcube.portlets.user</groupId>
|
||||||
<artifactId>gcube-url-shortener</artifactId>
|
<artifactId>gcube-url-shortener</artifactId>
|
||||||
|
|
|
@ -14,6 +14,8 @@ public enum ACTION_ON_ITEM {
|
||||||
SHOW_METADATA("Show Metadata"),
|
SHOW_METADATA("Show Metadata"),
|
||||||
VIEW_REPORT("View the Report"),
|
VIEW_REPORT("View the Report"),
|
||||||
EDIT_PROJECT("Edit the Project"),
|
EDIT_PROJECT("Edit the Project"),
|
||||||
|
CLONE_PROJECT("Clone the Project"),
|
||||||
|
PUBLISH_UNPUBLISH_PROJECT("Publish/UnPublish the Project"),
|
||||||
DELETE_PROJECT("Delete the Project");
|
DELETE_PROJECT("Delete the Project");
|
||||||
|
|
||||||
String label;
|
String label;
|
||||||
|
|
|
@ -92,7 +92,7 @@ public class TestGNACommon {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// @Test
|
//@Test
|
||||||
public void readGNDataEntryConfigsFromIS() throws Exception {
|
public void readGNDataEntryConfigsFromIS() throws Exception {
|
||||||
|
|
||||||
Thread thread = new Thread() {
|
Thread thread = new Thread() {
|
||||||
|
|
Loading…
Reference in New Issue