#23809 Passed to grsf-common-library.2.0.0[-SNAPSHOT]

This commit is contained in:
Francesco Mangiacrapa 2022-09-05 15:12:05 +02:00
parent 8d9e63b560
commit a883893490
3 changed files with 9 additions and 3 deletions

View File

@ -4,6 +4,12 @@
All notable changes to this project will be documented in this file. 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.7.0-SNAPSHOT] - 2022-09-05
#### Enhancements
- [#23809] Passed to grsf-common-library.2.0.0[-SNAPSHOT]
## [v1.6.1] - 2022-06-22 ## [v1.6.1] - 2022-06-22
#### Bug fixes #### Bug fixes

View File

@ -13,7 +13,7 @@
<groupId>org.gcube.portlets.widgets</groupId> <groupId>org.gcube.portlets.widgets</groupId>
<artifactId>grsf-manage-widget</artifactId> <artifactId>grsf-manage-widget</artifactId>
<version>1.6.1</version> <version>1.7.0-SNAPSHOT</version>
<name>gCube GRSF Manage widget</name> <name>gCube GRSF Manage widget</name>
<scm> <scm>
@ -78,7 +78,7 @@
<dependency> <dependency>
<groupId>org.gcube.data-catalogue</groupId> <groupId>org.gcube.data-catalogue</groupId>
<artifactId>grsf-common-library</artifactId> <artifactId>grsf-common-library</artifactId>
<version>[1-0-0, 2-0-0-SNAPSHOT)</version> <version>[2-0-0-SNAPSHOT, 3-0-0-SNAPSHOT)</version>
<scope>compile</scope> <scope>compile</scope>
</dependency> </dependency>
<dependency> <dependency>

View File

@ -320,7 +320,7 @@ public class GRSFNotificationService extends RemoteServiceServlet implements GRS
List<CkanResource> resources = record.getResources(); List<CkanResource> resources = record.getResources();
List<SourceRecord> sources = new ArrayList<SourceRecord>(3); List<SourceRecord> sources = new ArrayList<SourceRecord>(3);
for (CkanResource ckanResource : resources) { for (CkanResource ckanResource : resources) {
if (Sources.getListNames().contains(ckanResource.getName())) if (Sources.listNames().contains(ckanResource.getName()))
sources.add(new SourceRecord(ckanResource.getName(), ckanResource.getUrl())); sources.add(new SourceRecord(ckanResource.getName(), ckanResource.getUrl()));
} }