We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8c004fb + a09dc6e commit a83e688Copy full SHA for a83e688
bndtools.core/src/bndtools/editor/project/RunRequirementsPart.java
@@ -159,6 +159,11 @@ public void dispose() {
159
private void doResolve() {
160
IFormPage formPage = (IFormPage) getManagedForm().getContainer();
161
BndEditor editor = (BndEditor) formPage.getEditor();
162
+
163
+ // editor.doSave() is important
164
+ // to get changes of included .bndrun files before resolving
165
+ // (e.g. -include: shared.bndrun)
166
+ editor.doSave(null);
167
refreshFromModel();
168
commit(false);
169
editor.resolveRunBundles(new NullProgressMonitor(), false);
0 commit comments