Skip to content

Commit 3f47148

Browse files
Bugfix for wizard dependencies, New launch file to build RDKit locally (#98)
The wizard could not be installed anymore into Eclipse IDEs because the dependencies were by mistake set to something KNIME-like, which is wrong, because it has to be installed into the Eclipse IDE, not into the KNIME target platform. Added launch file to build complete RDKit Feature locally for NIBR within Novartis
1 parent 7bf7a0f commit 3f47148

File tree

3 files changed

+37
-18
lines changed

3 files changed

+37
-18
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2+
<launchConfiguration type="org.eclipse.m2e.Maven2LaunchConfigurationType">
3+
<booleanAttribute key="M2_DEBUG_OUTPUT" value="true"/>
4+
<stringAttribute key="M2_GOALS" value="-U clean verify -Dknime.version=4.3 -Dupdate.site=http://chbs-knime-app.dev.nibr.novartis.net/4.3/update/mirror -Dqualifier.prefix=vnibr"/>
5+
<booleanAttribute key="M2_NON_RECURSIVE" value="false"/>
6+
<booleanAttribute key="M2_OFFLINE" value="false"/>
7+
<stringAttribute key="M2_PROFILES" value=""/>
8+
<listAttribute key="M2_PROPERTIES"/>
9+
<stringAttribute key="M2_RUNTIME" value="EMBEDDED"/>
10+
<booleanAttribute key="M2_SKIP_TESTS" value="false"/>
11+
<intAttribute key="M2_THREADS" value="1"/>
12+
<booleanAttribute key="M2_UPDATE_SNAPSHOTS" value="false"/>
13+
<stringAttribute key="M2_USER_SETTINGS" value=""/>
14+
<booleanAttribute key="M2_WORKSPACE_RESOLUTION" value="false"/>
15+
<listAttribute key="org.eclipse.debug.ui.favoriteGroups">
16+
<listEntry value="org.eclipse.debug.ui.launchGroup.run"/>
17+
</listAttribute>
18+
<stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${project_loc:/knime-rdkit}"/>
19+
</launchConfiguration>

org.rdkit.knime.wizards.samples/META-INF/MANIFEST.MF

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ Automatic-Module-Name: org.rdkit.knime.wizards.samples
66
Bundle-Version: 4.3.1.qualifier
77
Bundle-Activator: org.rdkit.knime.wizards.samples.Activator
88
Bundle-Vendor: NIBR
9-
Require-Bundle: org.knime.base;bundle-version="[3.6.2,5.0.0)",
10-
org.knime.chem.types;bundle-version="[3.6.0,5.0.0)",
11-
org.rdkit.knime.nodes;bundle-version="[4.0.0,5.0.0)",
12-
org.rdkit.knime.types;bundle-version="[4.3.1,5.0.0)",
13-
org.eclipse.ui;bundle-version="[3.109.0,4.0.0)",
14-
org.eclipse.core.runtime;bundle-version="[3.13.0,4.0.0)"
9+
Require-Bundle: org.knime.base;bundle-version="[4.3.0,5.0.0)";resolution:=optional,
10+
org.knime.chem.types;bundle-version="[4.3.0,5.0.0)";resolution:=optional,
11+
org.rdkit.knime.nodes;bundle-version="[4.3.1,5.0.0)";resolution:=optional,
12+
org.rdkit.knime.types;bundle-version="[4.3.1,5.0.0)";resolution:=optional,
13+
org.eclipse.ui;bundle-version="[3.116.0,4.0.0)";resolution:=optional,
14+
org.eclipse.core.runtime;bundle-version="[3.17.0,4.0.0)";resolution:=optional
1515
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
1616
Bundle-ActivationPolicy: lazy

org.rdkit.knime.wizards/META-INF/MANIFEST.MF

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@ Automatic-Module-Name: org.rdkit.knime.wizards
66
Bundle-Version: 4.3.1.qualifier
77
Bundle-Activator: org.rdkit.knime.wizards.RDKitNodesWizardsPlugin
88
Bundle-Vendor: NIBR
9-
Require-Bundle: org.knime.base;bundle-version="[3.6.2,5.0.0)",
10-
org.knime.workbench.repository;bundle-version="[3.6.0,5.0.0)",
11-
org.eclipse.ui;bundle-version="[3.109.0,4.0.0)",
12-
org.eclipse.core.runtime;bundle-version="[3.13.0,4.0.0)",
13-
org.eclipse.core.resources;bundle-version="[3.12.0,4.0.0)",
14-
org.eclipse.ui.ide;bundle-version="[3.13.0,4.0.0)",
15-
org.eclipse.jdt.core;bundle-version="[3.13.0,4.0.0)",
16-
org.eclipse.jdt.ui;bundle-version="[3.13.0,4.0.0)",
17-
org.knime.core;bundle-version="[3.6.2,5.0.0)",
18-
org.eclipse.ui.views.properties.tabbed;bundle-version="[3.8.0,4.0.0)",
19-
org.eclipse.gef;bundle-version="[3.11.0,4.0.0)",
20-
org.eclipse.pde;bundle-version="[3.13.0,4.0.0)"
9+
Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.7.0,4.0.0)",
10+
org.eclipse.core.resources;bundle-version="[3.6.0,4.0.0)",
11+
org.eclipse.ui;bundle-version="[3.7.0,4.0.0)",
12+
org.eclipse.jface;bundle-version="[3.7.0,4.0.0)",
13+
org.eclipse.jdt.core;bundle-version="[3.7.0,4.0.0]",
14+
org.eclipse.jdt.ui;bundle-version="[3.7.0,4.0.0]",
15+
org.eclipse.ui.ide;bundle-version="[3.7.0,4.0.0]",
16+
org.eclipse.pde.core;bundle-version="[3.7.1,4.0.0)",
17+
org.eclipse.ui.views.properties.tabbed;bundle-version="[3.7.0,4.0.0)",
18+
org.eclipse.gef;bundle-version="[3.7.0,4.0.0)",
19+
org.eclipse.pde;bundle-version="[3.7.0,4.0.0)",
20+
org.apache.commons.io;bundle-version="[2.6.0,3.0.0)"
2121
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
2222
Bundle-ActivationPolicy: lazy
2323
Bundle-ClassPath: .

0 commit comments

Comments
 (0)