-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Node.js install retry (5) (#514)
- Loading branch information
Showing
7 changed files
with
250 additions
and
103 deletions.
There are no files selected for viewing
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
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
17 changes: 17 additions & 0 deletions
17
...rc/main/java/io/quarkiverse/quinoa/deployment/items/InstalledPackageManagerBuildItem.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,17 @@ | ||
package io.quarkiverse.quinoa.deployment.items; | ||
|
||
import io.quarkiverse.quinoa.deployment.packagemanager.PackageManagerRunner; | ||
import io.quarkus.builder.item.SimpleBuildItem; | ||
|
||
public final class InstalledPackageManagerBuildItem extends SimpleBuildItem { | ||
|
||
private final PackageManagerRunner packageManagerRunner; | ||
|
||
public InstalledPackageManagerBuildItem(PackageManagerRunner packageManagerRunner) { | ||
this.packageManagerRunner = packageManagerRunner; | ||
} | ||
|
||
public PackageManagerRunner getPackageManager() { | ||
return packageManagerRunner; | ||
} | ||
} |
Oops, something went wrong.