Merge pull request 'gCat-Controller_1.0.6' (!4) from gCat-Controller_1.0.6 into master

Reviewed-on: #4
This commit is contained in:
Fabio Sinibaldi 2021-07-13 18:11:36 +02:00
commit e1b9a27d78
4 changed files with 43 additions and 6 deletions

View File

@ -47,7 +47,7 @@
<dependency>
<groupId>org.gcube.data.analysis</groupId>
<artifactId>data-miner-manager-cl</artifactId>
<version>[1.6.0,2.0.0)</version>
<version>[1.8.0,2.0.0)</version>
</dependency>
@ -56,7 +56,12 @@
<artifactId>jersey-media-json-jackson</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.20</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
@ -69,6 +74,11 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.gcube.common</groupId>
<artifactId>authorization-client</artifactId>
<scope>compile</scope>
</dependency>

View File

@ -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

View File

@ -7,7 +7,7 @@
</parent>
<artifactId>gCat-Controller</artifactId>
<name>gCat-Controller</name>
<version>1.0.5</version>
<version>1.0.6</version>
<description>Controller implementation for GCat Service</description>
<!-- <properties> -->
<!-- <gitBaseUrl>https://code-repo.d4science.org/gCubeSystem</gitBaseUrl> -->
@ -47,9 +47,9 @@
<dependency>
<groupId>org.gcube.data-publishing</groupId>
<artifactId>gcat-client</artifactId>
<version>[1.0.0,2.0.0)</version>
<groupId>org.gcube.data-catalogue</groupId>
<artifactId>gcat-client</artifactId>
<version>[2.0.0,3.0.0)</version>
</dependency>

View File

@ -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();
}
}