diff --git a/DataMinerAlgorithmsCrawler/pom.xml b/DataMinerAlgorithmsCrawler/pom.xml index c3098a2..c6784ed 100644 --- a/DataMinerAlgorithmsCrawler/pom.xml +++ b/DataMinerAlgorithmsCrawler/pom.xml @@ -47,7 +47,7 @@ org.gcube.data.analysis data-miner-manager-cl - [1.6.0,2.0.0) + [1.8.0,2.0.0) @@ -56,7 +56,12 @@ jersey-media-json-jackson - + + org.projectlombok + lombok + 1.18.20 + provided + org.slf4j @@ -69,6 +74,11 @@ test + + org.gcube.common + authorization-client + compile + diff --git a/gCat-Controller/CHANGELOG.md b/gCat-Controller/CHANGELOG.md index 14aa89a..23e4dbf 100644 --- a/gCat-Controller/CHANGELOG.md +++ b/gCat-Controller/CHANGELOG.md @@ -2,6 +2,9 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm # Changelog for org.gcube.data-publishing.gFeed.gCat-controller +## [v1.0.6] - 2021-07-01 +- gCat client coordinates + ## [v1.0.5] - 2020-12-15 - gCat Client upgrade diff --git a/gCat-Controller/pom.xml b/gCat-Controller/pom.xml index c9d52d2..3b7929d 100644 --- a/gCat-Controller/pom.xml +++ b/gCat-Controller/pom.xml @@ -7,7 +7,7 @@ gCat-Controller gCat-Controller - 1.0.5 + 1.0.6 Controller implementation for GCat Service @@ -47,9 +47,9 @@ - org.gcube.data-publishing - gcat-client - [1.0.0,2.0.0) + org.gcube.data-catalogue + gcat-client + [2.0.0,3.0.0) diff --git a/gCat-Controller/src/test/java/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/InfrastructureTest.java b/gCat-Controller/src/test/java/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/InfrastructureTest.java new file mode 100644 index 0000000..c86e525 --- /dev/null +++ b/gCat-Controller/src/test/java/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/InfrastructureTest.java @@ -0,0 +1,24 @@ +package org.gcube.data.publishing.gCatFeeder.catalogues.gCat; + +import com.fasterxml.jackson.core.JsonGenerationException; +import com.fasterxml.jackson.databind.JsonMappingException; +import org.gcube.data.publishing.gCatFeeder.model.InternalConversionException; +import org.gcube.data.publishing.gCatFeeder.tests.InfrastructureTests; +import org.gcube.gcat.client.Profile; +import org.junit.Assume; +import org.junit.Test; + +import java.io.IOException; +import java.net.MalformedURLException; + +public class InfrastructureTest extends InfrastructureTests { + + @Test + public void testIsServicePresent() throws MalformedURLException { + Assume.assumeTrue(isTestInfrastructureEnabled()); + System.out.println("START HERE"); + new Profile(); + + } + +}