-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Consider runbundles when computing dependencies
If we have a bndrun activated then the runbundles become dependencies of the maven project. This now calculates the enabled bndruns and return the bundle names so they can be used to add required reactor projects. (cherry picked from commit 807bd8e)
- Loading branch information
1 parent
099af7f
commit 483cc67
Showing
3 changed files
with
99 additions
and
12 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
tycho-bnd-plugin/src/main/java/org/eclipse/tycho/bnd/BndRunFile.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2025 Christoph Läubrich and others. | ||
* This program and the accompanying materials | ||
* are made available under the terms of the Eclipse Public License 2.0 | ||
* which accompanies this distribution, and is available at | ||
* https://www.eclipse.org/legal/epl-2.0/ | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
* | ||
* Contributors: | ||
* Christoph Läubrich - initial API and implementation | ||
*******************************************************************************/ | ||
package org.eclipse.tycho.bnd; | ||
|
||
import java.nio.file.Path; | ||
|
||
public record BndRunFile(String name, Path path) { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters