gCat-Controller 1.0.6

This commit is contained in:
Fabio Sinibaldi 2021-07-01 16:48:44 +02:00
parent 362448d4b8
commit 4ddbcd6c1a
3 changed files with 39 additions and 2 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-SNAPSHOT] - 2021-07-01
- gCat client coordinates
## [v1.0.5] - 2020-12-15
- gCat Client upgrade

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