Merge pull request '1.0.3' (#3) from 1.0.3 into master

master r4.27.0
Fabio Sinibaldi 3 years ago
commit 37f0ba6a45

@ -2,6 +2,9 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
# Changelog for org.gcube.application.geoportal-service
## [v1.0.3] 2020-11-11
Fixed HTTP method
## [v1.0.2] 2020-11-11
Delete method
Excluded upper bound release gCube 5

@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.gcube.application</groupId>
<artifactId>geoportal-service</artifactId>
<version>1.0.2</version>
<version>1.0.3</version>
<name>Geoportal Service</name>
<packaging>war</packaging>
@ -99,12 +99,12 @@
<dependency>
<groupId>org.gcube.application</groupId>
<artifactId>geoportal-common</artifactId>
<version>[1.0.0-SNAPSHOT,2.0.0)</version>
<version>[1.0.0,2.0.0)</version>
</dependency>
<dependency>
<groupId>org.gcube.application</groupId>
<artifactId>geoportal-logic</artifactId>
<version>[1.0.4-SNAPSHOT,2.0.0)</version>
<version>[1.0.4,2.0.0)</version>
</dependency>

@ -4,6 +4,7 @@ import java.util.Collections;
import java.util.List;
import javax.ws.rs.Consumes;
import javax.ws.rs.DELETE;
import javax.ws.rs.GET;
import javax.ws.rs.POST;
import javax.ws.rs.PUT;
@ -112,7 +113,7 @@ public class Projects {
// DELETE BY ID
@GET
@DELETE
@Produces(MediaType.APPLICATION_JSON)
@Path("{"+InterfaceConstants.Parameters.PROFILE_ID+"}/{"+InterfaceConstants.Parameters.PROJECT_ID+"}")
public void delete(@PathParam(InterfaceConstants.Parameters.PROFILE_ID) String profile,