Moved to gcube-bom v 2.1.0-SNAPSHOT, Merged with Clone and
Publish/UnPublish
This commit is contained in:
parent
f812ac31d6
commit
a9cb4e409c
|
@ -5,12 +5,18 @@ 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.0-SNAPSHOT] - 2022-02-28
|
||||
## [v2.0.0-SNAPSHOT] - 2022-06-08
|
||||
|
||||
#### Enhancements
|
||||
|
||||
- [#22883] Integrate the configurations exposed by geoportal-client
|
||||
|
||||
## [v1.4.0] - 2022-06-08
|
||||
|
||||
#### Enhancements
|
||||
|
||||
- [#23392] Implemented the "Clone Project" facility
|
||||
- [#23457] Implemented the "Publish/UnPublish Project" facility
|
||||
|
||||
## [v1.3.0] - 2021-12-03
|
||||
|
||||
|
|
2
pom.xml
2
pom.xml
|
@ -41,7 +41,7 @@
|
|||
<dependency>
|
||||
<groupId>org.gcube.distribution</groupId>
|
||||
<artifactId>gcube-bom</artifactId>
|
||||
<version>2.0.1</version>
|
||||
<version>2.1.0-SNAPSHOT</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -23,11 +23,11 @@ public class UCD_Tests {
|
|||
// private static String TOKEN = ""; //preVRE
|
||||
|
||||
private static String CONTEXT = "/gcube/devsec/devVRE";
|
||||
private static String TOKEN = ""; // devVRE
|
||||
private static String TOKEN = "8e74a17c-92f1-405a-b591-3a6090066248-98187548"; // devVRE
|
||||
|
||||
private static String PROFILE_ID = "profiledConcessioni";
|
||||
|
||||
//@Before
|
||||
@Before
|
||||
public void getClient() {
|
||||
// assumeTrue(GCubeTest.isTestInfrastructureEnabled());
|
||||
ScopeProvider.instance.set(CONTEXT);
|
||||
|
@ -35,7 +35,7 @@ public class UCD_Tests {
|
|||
client = GeoportalClientCaller.useCaseDescriptors();
|
||||
}
|
||||
|
||||
//@Test
|
||||
@Test
|
||||
public void getList() throws Exception {
|
||||
ScopeProvider.instance.set(CONTEXT);
|
||||
SecurityTokenProvider.instance.set(TOKEN);
|
||||
|
|
Loading…
Reference in New Issue