-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump version to 6.10 because of new features.
- Loading branch information
Showing
29 changed files
with
367 additions
and
408 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
invoker.os.family = linux, windows | ||
invoker.os.family = linux, windows |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,27 @@ | ||
package io.kokuwa.maven.helm.pojo; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
import lombok.Data; | ||
|
||
/** | ||
* POJO for list of Chart.yaml dependencies | ||
* POJO for list of "Chart.yaml" dependencies. | ||
* | ||
* @since 6.9.1 | ||
* @since 6.10.0 | ||
*/ | ||
@Data | ||
public class Dependencies { | ||
private ArrayList<Dependency> dependencies; | ||
|
||
private List<Dependency> dependencies; | ||
|
||
@Data | ||
public static class Dependency { | ||
|
||
private String name; | ||
private String version; | ||
private String repository; | ||
private String version; | ||
|
||
/** | ||
* Determines whether the repository/version will be updated | ||
* for a given dependency. | ||
*/ | ||
private boolean overwrite = false; | ||
/** Determines whether the repository/version will be updated for a given dependency. */ | ||
private boolean overwrite = false; | ||
} | ||
} |
Oops, something went wrong.