diff --git a/CHANGELOG.md b/CHANGELOG.md index c6d193c..889061a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,20 @@ # Changelog +## [v1.1.7-SNAPSHOT] - 2020-11-11 -## [v1.1.5] [r4.24.0] - 2020-06-05 +### Fix + - Added a printStackTrace in executeRequest + +## [v1.1.6] - 2020-10-15 + +### Features + +- Updated pom.xml for support gcube-bom-2.0.0-SNAPSHOT [#19790] + + +## [v1.1.5] - 2020-06-05 +>>>>>>> 7e2df26281c369848795991265f7484f7a3fe2c8 ### Fixes diff --git a/changelog.xml b/changelog.xml index 69d08f2..ee68be9 100644 --- a/changelog.xml +++ b/changelog.xml @@ -1,4 +1,8 @@ + + Updated pom.xml for support gcube-bom-2.0.0-SNAPSHOT [#19790] + Updated ExecuteResponseBuilder for support protocol option [#19129] diff --git a/pom.xml b/pom.xml index 908b709..3d5e3ac 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.gcube.data-analysis wps - 1.1.5 + 1.1.7-SNAPSHOT WPS A service implementing a WPS provider in the D4Science e-Infrastructure @@ -16,6 +16,13 @@ war + + scm:git:https://code-repo.d4science.org/gCubeSystem/${project.artifactId}.git + scm:git:https://code-repo.d4science.org/gCubeSystem/${project.artifactId}.git + https://code-repo.d4science.org/gCubeSystem/${project.artifactId} + + + DataMiner WPS @@ -34,7 +41,7 @@ n52-releases 52n Releases - http://52north.org/maven/repo/releases + https://52north.org/maven/repo/releases true @@ -45,17 +52,17 @@ Apache Apache repository - http://repo1.maven.org/maven2 + https://repo1.maven.org/maven2 geotools Geotools Repo - http://download.osgeo.org/webdav/geotools + https://download.osgeo.org/webdav/geotools true - true + false @@ -63,14 +70,30 @@ opengeo repository https://repo.boundlessgeo.com + + geosolutions + geosolution repository + http://maven.geo-solutions.it/ + + false + never + + + true + never + + + org.gcube.distribution - maven-smartgears-bom - 2.1.0 + gcube-smartgears-bom + 2.0.0 pom import @@ -122,6 +145,7 @@ org.gcube.core common-smartgears + provided org.gcube.core @@ -132,10 +156,13 @@ org.gcube.common common-authorization + provided + org.gcube.core common-scope + provided @@ -253,17 +280,9 @@ commons-codec 1.5 - - commons-httpclient - commons-httpclient - 3.1 - - - commons-logging - commons-logging - - - + commons-io commons-io @@ -411,6 +430,7 @@ mapscript 6.0.3 + org.n52.wps 52n-wps-io-geotools @@ -422,10 +442,8 @@ ${n52version} + org.n52.wps 52n-wps-algorithm - - org.n52.wps - @@ -459,12 +477,12 @@ org.gcube.dataanalysis 52n-wps-server-gcube - [3.6.1-SNAPSHOT, 3.7.0-SNAPSHOT] + [3.6.2, 3.7.0-SNAPSHOT) org.gcube.dataanalysis 52n-wps-algorithm-gcube - [3.6.1-SNAPSHOT, 3.7.0-SNAPSHOT] + [3.6.2, 3.7.0-SNAPSHOT) org.n52.wps @@ -472,8 +490,8 @@ ${n52version} - 52n-wps-algorithm org.n52.wps + 52n-wps-algorithm @@ -504,8 +522,12 @@ ${n52version} - 52n-wps-algorithm org.n52.wps + 52n-wps-algorithm + + + org.n52.wps + 52n-wps-server @@ -523,6 +545,10 @@ 52n-wps-algorithm org.n52.wps + + org.n52.wps + 52n-wps-server + @@ -531,8 +557,12 @@ ${n52version} - 52n-wps-algorithm org.n52.wps + 52n-wps-algorithm + + + org.n52.wps + 52n-wps-server @@ -692,7 +722,6 @@ ch.qos.logback logback-classic - 1.1.11 @@ -706,7 +735,7 @@ ${artifactId} - + org.apache.maven.plugins maven-war-plugin @@ -740,6 +769,7 @@ LICENSE.md README.md + CHANGELOG.md gcube-app.xml changelog.xml profile.xml diff --git a/src/main/java/org/gcube/data/analysis/wps/ExecuteRequest.java b/src/main/java/org/gcube/data/analysis/wps/ExecuteRequest.java index 6603716..a1af846 100644 --- a/src/main/java/org/gcube/data/analysis/wps/ExecuteRequest.java +++ b/src/main/java/org/gcube/data/analysis/wps/ExecuteRequest.java @@ -624,6 +624,7 @@ public class ExecuteRequest extends Request implements IObserver { updateStatusSuccess(); } } catch (Throwable e) { + e.printStackTrace(); String errorMessage = null; if (algorithm != null && algorithm.getErrors() != null && !algorithm.getErrors().isEmpty()) { errorMessage = algorithm.getErrors().get(0);