ref 18190: Configure SAI and DM to support KNIME 4.1
https://support.d4science.org/issues/18190 Updated to support Knime-Workflow 4.1
This commit is contained in:
parent
66980b42ca
commit
572a2a3341
2
pom.xml
2
pom.xml
|
@ -12,7 +12,7 @@
|
||||||
<groupId>org.gcube.dataanalysis</groupId>
|
<groupId>org.gcube.dataanalysis</groupId>
|
||||||
<artifactId>dataminer-pool-manager</artifactId>
|
<artifactId>dataminer-pool-manager</artifactId>
|
||||||
<packaging>war</packaging>
|
<packaging>war</packaging>
|
||||||
<version>2.6.0</version>
|
<version>2.6.0-SNAPSHOT</version>
|
||||||
|
|
||||||
<name>dataminer-pool-manager</name>
|
<name>dataminer-pool-manager</name>
|
||||||
<description>DataMiner Pool Manager is a service to support the integration of algorithms in D4Science Infrastructure</description>
|
<description>DataMiner Pool Manager is a service to support the integration of algorithms in D4Science Infrastructure</description>
|
||||||
|
|
|
@ -163,6 +163,7 @@ public abstract class AbstractConfiguration
|
||||||
"<deps-r>{$resource/Profile/Body/"+type+"/deps-r/text()}</deps-r>"+
|
"<deps-r>{$resource/Profile/Body/"+type+"/deps-r/text()}</deps-r>"+
|
||||||
"<deps-java>{$resource/Profile/Body/"+type+"/deps-java/text()}</deps-java>"+
|
"<deps-java>{$resource/Profile/Body/"+type+"/deps-java/text()}</deps-java>"+
|
||||||
"<deps-knime-workflow>{$resource/Profile/Body/"+type+"/deps-knime-workflow/text()}</deps-knime-workflow >"+
|
"<deps-knime-workflow>{$resource/Profile/Body/"+type+"/deps-knime-workflow/text()}</deps-knime-workflow >"+
|
||||||
|
"<deps-knime-workflow4_1>{$resource/Profile/Body/"+type+"/deps-knime-workflow4_1/text()}</deps-knime-workflow4_1>"+
|
||||||
"<deps-octave>{$resource/Profile/Body/"+type+"/deps-octave/text()}</deps-octave>"+
|
"<deps-octave>{$resource/Profile/Body/"+type+"/deps-octave/text()}</deps-octave>"+
|
||||||
"<deps-python>{$resource/Profile/Body/"+type+"/deps-python/text()}</deps-python>"+
|
"<deps-python>{$resource/Profile/Body/"+type+"/deps-python/text()}</deps-python>"+
|
||||||
"<deps-python3_6>{$resource/Profile/Body/"+type+"/deps-python3_6/text()}</deps-python3_6>"+
|
"<deps-python3_6>{$resource/Profile/Body/"+type+"/deps-python3_6/text()}</deps-python3_6>"+
|
||||||
|
|
|
@ -84,6 +84,8 @@ public abstract class SVNUpdater {
|
||||||
return configuration.getSVNJavaDepsList();
|
return configuration.getSVNJavaDepsList();
|
||||||
case "Knime-Workflow":
|
case "Knime-Workflow":
|
||||||
return configuration.getSVNKWDepsList();
|
return configuration.getSVNKWDepsList();
|
||||||
|
case "Knime-Workflow4.1":
|
||||||
|
return configuration.getSVNKW4_1DepsList();
|
||||||
case "Linux-compiled":
|
case "Linux-compiled":
|
||||||
return configuration.getSVNLinuxCompiledDepsList();
|
return configuration.getSVNLinuxCompiledDepsList();
|
||||||
case "Octave":
|
case "Octave":
|
||||||
|
|
Loading…
Reference in New Issue